html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 20px;
    overflow-x: hidden;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  color: #74767A;
}

span,
p {
  font-family: "IBM Plex Sans", sans-serif;
}

h1,
h2,
h3,
.span-header {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

h4,
h5 {
  font-family: "Open Sans Condensed", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal_visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-animation {
  position: relative;
  overflow: hidden;
}
.has-animation p,
.has-animation img,
.has-animation .image-container {
  opacity: 0;
}
.has-animation.animate-in p,
.has-animation.animate-in img,
.has-animation.animate-in .image-container {
  animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 633px;
  z-index: 1;
}
.has-animation.animate-in:before {
  background-color: #00893f;
}
.has-animation.animate-in:after {
  background-color: #061b2f;
  animation-delay: 0.5s;
}
.has-animation.animation-ltr.animate-in:before {
  animation: revealLTR 1.8s ease;
}
.has-animation.animation-ltr.animate-in:after {
  animation: revealLTR 1s 0.6s ease;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 1.8s ease;
}
.has-animation.animation-rtl.animate-in:after {
  animation: revealRTL 1s 0.6s ease;
}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
.navbar {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  font-family: "Carrois Gothic SC", sans-serif;
  transition: all 0.5s ease-in;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .navbar {
    padding: 0;
  }
}
.navbar img {
  width: 85%;
  transition: all 0.5s ease-in;
}
@media (min-width: 320px) and (max-width: 420px) {
  .navbar img {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .navbar img {
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar img {
    width: 50%;
    margin: 0 auto;
  }
}
.navbar .navbar-brand {
  width: 30%;
}
@media (min-width: 320px) and (max-width: 420px) {
  .navbar .navbar-brand {
    margin-right: 0;
    width: 100%;
  }
}
@media (min-width: 420px) and (max-width: 992px) {
  .navbar .navbar-brand {
    width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .navbar {
    background-color: #254388;
    position: relative;
    padding: 0 16px;
  }
}
.navbar .navbar-toggler {
  color: #6e82af;
  margin: 10px 0;
  background-color: #fff;
}
@media (min-width: 576px) and (max-width: 992px) {
  .navbar .container {
    flex-wrap: wrap;
  }
}

.navbar-nav .dropdown-menu {
  border-radius: 0;
  z-index: 99;
}
.navbar-nav .dropdown-menu a {
  color: #333;
  border-bottom: 1px solid #f3f3f3;
}
.navbar-nav .dropdown-menu a:last-child {
  border-bottom: none;
}

.scroll-nav {
  position: fixed;
  transform: translateY(0px);
  background-color: #002142;
  width: 100%;
  z-index: 999;
  padding: 0;
}
@media (min-width: 320px) and (max-width: 992px) {
  .scroll-nav {
    padding: 0 15px;
  }
}
.scroll-nav img {
  width: 60%;
}
@media (min-width: 768px) and (max-width: 992px) {
  .scroll-nav img {
    width: 30%;
  }
}

.navbar a {
  color: #fff;
  transition: color 0.2s ease;
  font-size: 17px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .navbar a {
    font-size: 11px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar a {
    font-size: 14px;
  }
}
.navbar .active a,
.navbar :hover {
  color: #ce9233;
}
.navbar .active {
  text-shadow: 0 0 10px #000;
}
.navbar .navbar-nav .dropdown-menu a {
  text-shadow: none;
}

footer {
  background: #00264d;
  padding-top: 1rem;
}
footer .footer-btn {
  background-color: transparent;
  border: 1px solid white;
}
footer img {
  width: 87%;
}
@media (min-width: 320px) and (max-width: 420px) {
  footer img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  footer img {
    width: 50%;
    margin-left: 160px;
  }
}
footer .italic-font {
  font-family: "Satisfy", serif;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
footer .flex-container {
  display: flex;
  justify-content: center;
  width: 1360px;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 768px) {
  footer .flex-container {
    flex-wrap: wrap;
    width: auto;
  }
}
@media (min-width: 810px) and (max-width: 1300px) {
  footer .flex-container {
    width: auto;
    flex-wrap: wrap;
  }
}
footer .top-footer a {
  color: #fff;
}
footer .top-footer ul {
  padding-left: 0;
  list-style: none;
}
footer .top-footer ul.list-content {
  padding-left: 30px;
  line-height: 35px;
}
footer .bottom-footer {
  background: #001933;
  padding: 0.3rem;
  font-size: 14px;
  color: #dbe0eb;
}
footer .bottom-footer a {
  color: #dbe0eb;
}

.page-title,
.section-heading {
  font-weight: bold;
}

.page-title {
  font-size: 3rem;
  line-height: 1.01;
  color: #254388;
}
@media screen and (min-width: 768px) {
  .page-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
}

.section-heading {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

.section-subheading {
  font-size: 1.25rem;
  font-weight: 700;
}

.ddmg-sig {
  background-color: #000;
}
.ddmg-sig p,
.ddmg-sig a {
  font-size: 12px;
  color: #959595;
}

.dark-text {
  color: #ce9233;
  font-family: "Oswald", sans-serif;
}

@media (min-width: 320px) and (max-width: 420px) {
  .mobile-center {
    text-align: center;
  }
}

.bgOne {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bg-9.jpg);
  background-position: center;
}

.bgTwo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/welder.jpg);
  background-position: right;
}

.bgThree {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/page-bg-3.png);
}

.img-banner {
  background-size: cover;
  padding-top: 65px;
  padding-bottom: 65px;
  margin-bottom: 60px;
}
@media (min-width: 320px) and (max-width: 768px) {
  .img-banner {
    background-position: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .img-banner {
    padding: 155px 0 65px 0;
  }
}
@media screen and (min-width: 1200px) {
  .img-banner {
    padding: 200px 0 100px 0;
  }
}

.img-banner .container {
  z-index: 0 !important;
}

.img-banner h1 {
  color: #fff;
  font-size: 31px;
  text-align: left;
  margin-bottom: 0px;
  text-align: center;
  text-shadow: 0 0 5px #000;
}
@media (min-width: 1200px) {
  .img-banner h1 {
    font-size: 41px;
  }
}

.colored-bg {
  background-color: #A5690A;
  padding: 90px 0 90px;
  margin-top: 30px;
}
.colored-bg .btn {
  background: #ececec;
  color: #333333;
  padding: 15px 60px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  position: relative;
  bottom: -30px;
  float: right;
}
.colored-bg h1 {
  color: #ececec;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.image-padding img {
  padding: 20px;
  padding-top: 0;
}

.icon {
  color: #254388;
  position: relative;
  font-size: 60px;
  margin-right: 23px;
  line-height: 50px;
  margin-top: 7px;
}

.photo-img {
  height: 180px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal_visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 200px) and (max-width: 420px) {
  .mobile-image img {
    width: 100%;
  }
}

.dark-card {
  background-color: #f2f2f2;
}

.industry-wrapper, header .navbar-collapse, .welcome-img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.17), 0 3px 12px rgba(0, 0, 0, 0.08);
}

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

.section-padding {
  padding: 3rem 0;
}

@media screen and (min-width: 768px) {
  .welcome-grid {
    display: grid;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .welcome-grid {
    grid-template-columns: 60ch 1fr;
  }
}
@media screen and (min-width: 768px) {
  .welcome-grid > .seg01 {
    grid-row-start: 1;
    grid-column: 1/span 2;
  }
}
@media screen and (min-width: 768px) {
  .welcome-grid > .seg02 {
    grid-row-start: 2;
    grid-column: 1;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .home-mini-sections {
    display: block;
  }
  .home-mini-sections > div {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1024px) {
  .home-mini-sections {
    display: flex;
  }
  .home-mini-sections > div {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1200px) {
  .home-mini-sections {
    display: flex;
  }
  .home-mini-sections > div {
    flex: 0 0 50%;
  }
}

.half-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .half-container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .half-container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .half-container {
    max-width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .half-container {
    max-width: 605px;
  }
  .home-quote > .half-container {
    margin-right: 0;
  }
  .home-news > .half-container {
    margin-left: 0;
  }
}

.btn-main, .btn-learn {
  padding: 0.4rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}
.btn-main:focus, .btn-learn:focus {
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .btn-main, .btn-learn {
    font-size: 14px;
  }
}

.btn-learn {
  border: 1px solid #000;
  background: #090738;
  color: #fff;
  text-shadow: none;
}
.btn-learn:hover {
  background: transparent;
  color: #000;
}

.btn {
  border-radius: 0;
  background-color: #254388;
  color: #fff;
  border: none;
}

.split-btn a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.split-btn .btn {
  position: relative;
  letter-spacing: 0.25em;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background: transparent;
  outline: none;
  font-size: 14px;
  text-shadow: 0 0 4px #000;
  color: #ececec;
}
@media screen and (min-width: 1200px) {
  .split-btn .btn {
    font-size: 16px;
  }
}
.split-btn .btn::after, .split-btn .btn::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 55%;
  transform: skewX(30deg);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -2;
}
.split-btn .btn::before {
  background-color: #090738;
  top: 0rem;
  left: 0rem;
}
.split-btn .btn::after {
  background-color: #63AEF2;
  top: 0.5rem;
  left: 6.5rem;
}
.split-btn .btn:hover {
  color: #fff;
}
.split-btn .btn:hover::before, .split-btn .btn:hover::after {
  top: 4px;
  transform: skewx(0deg);
}
.split-btn .btn:hover::after {
  left: 0.8rem;
  width: 45%;
}
.split-btn .btn:hover::before {
  left: 6.3rem;
  width: 45%;
}

.border-btn a {
  position: relative;
  padding: 1em 1.5em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 15px;
  margin: 1em 0.8em;
  color: #fff;
  text-transform: uppercase;
}
.border-btn a::after, .border-btn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  transition: all 0.6s ease;
  border-radius: 2px;
}
.border-btn a::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: white;
  border-right-color: white;
}
.border-btn a::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: white;
  border-left-color: white;
}
.border-btn a:hover:after, .border-btn a:hover:before {
  width: 100%;
  height: 100%;
}

.industry-wrapper {
  background: #fff;
  padding: 1rem;
}

.industry-list {
  columns: 1;
}
@media screen and (min-width: 768px) {
  .industry-list {
    columns: 3;
  }
}
@media screen and (min-width: 1200px) {
  .industry-list {
    columns: 2;
  }
}
.industry-list > li {
  margin-bottom: 1rem;
}

.carousel-item .img-fluid {
  width: 100%;
  height: auto;
}

.scroll-down {
  position: absolute;
  top: 70%;
  left: 48.5%;
  font-size: 56px;
  color: #ce9233;
  z-index: 99;
}
.scroll-down :hover {
  color: #ce9233;
}

.scroll-down {
  animation-name: up-and-down;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes up-and-down {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #254388;
  opacity: 0.44;
}

#myVideo {
  width: 100%;
}

.carousel-inner {
  overflow: hidden;
  height: 912px;
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .carousel-inner {
    height: 70vh !important;
  }
}
@media (min-width: 1401px) and (max-width: 1599px) {
  .carousel-inner {
    height: 61vh !important;
  }
}
@media (min-width: 1344px) and (max-width: 1400px) {
  .carousel-inner {
    height: 85vh !important;
  }
}
@media (min-width: 1301px) and (max-width: 1400px) {
  .carousel-inner {
    height: 63vh !important;
  }
}
@media (min-width: 1280px) and (max-width: 1300px) {
  .carousel-inner {
    height: 58vh !important;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .carousel-inner {
    height: 66vh !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .carousel-inner {
    height: 50vh !important;
  }
}
@media (min-width: 864px) and (max-width: 992px) {
  .carousel-inner {
    height: 33vh !important;
  }
}
@media (min-width: 810px) and (max-width: 992px) {
  .carousel-inner {
    height: 36vh !important;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-inner {
    height: 472px !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .carousel-inner {
    height: 275px !important;
  }
}
@media (min-width: 320px) and (max-width: 420px) {
  .carousel-inner {
    height: 213px !important;
  }
}

.carousel-indicators {
  display: block;
  top: 46%;
  z-index: -1;
  left: -35px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-indicators {
    top: 19%;
    left: -15px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .carousel-indicators {
    top: 33%;
  }
}
.carousel-indicators li {
  height: 40px;
  margin-bottom: 15px;
  width: 5px;
  background-color: #ececec;
}
.carousel-indicators li.active {
  background-color: #ce9233;
}

.carousel-caption {
  text-transform: uppercase;
  top: 45%;
  z-index: 3;
  text-shadow: 0 0 5px #333333;
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-caption {
    top: 7vh;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .carousel-caption {
    top: 22vh;
  }
}
.carousel-caption h1 {
  font-size: 400px;
  left: 0;
  line-height: 1;
  margin: 0;
  opacity: 0.2;
  right: 0;
  top: -40%;
  position: absolute;
  z-index: -1;
  margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 150px;
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .carousel-caption h1 {
    font-size: 240px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .carousel-caption h1 {
    font-size: 272px;
  }
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .carousel-caption h1 {
    font-size: 350px;
  }
}
.carousel-caption h1.manufacturing {
  font-size: 250px;
  top: -20%;
  left: -180px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-caption h1.manufacturing {
    font-size: 90px;
    left: -35px;
    top: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .carousel-caption h1.manufacturing {
    font-size: 110px;
    left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1700px) {
  .carousel-caption h1.manufacturing {
    font-size: 123px;
    left: 0;
  }
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .carousel-caption h1.manufacturing {
    font-size: 164px;
    top: -35px;
  }
}
.carousel-caption h2 {
  font-size: 80px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .carousel-caption h2 {
    font-size: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .carousel-caption h2 {
    font-size: 45px;
  }
}
@media (min-width: 1201px) and (max-width: 1700px) {
  .carousel-caption h2 {
    font-size: 56px;
  }
}
.carousel-caption h2 span {
  margin: 0 20px;
}
.carousel-caption .light-blue {
  color: #ce9233;
}
.carousel-caption p {
  letter-spacing: 15px;
}

.video-carousel {
  top: 39%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .video-carousel {
    top: 7vh;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .video-carousel {
    top: 22vh;
  }
}
@media (min-width: 1201px) and (max-width: 1700px) {
  .video-carousel {
    top: 33%;
  }
}
.video-carousel h1 {
  top: -27%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .video-carousel h1 {
    top: 0;
    right: -25px;
  }
}

.animate__fadeIn {
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
  text-align: center;
}
.center h1 {
  font-size: 10vh;
  line-height: 1;
}

.carousel-fade .carousel-item {
  opacity: 0;
  height: auto;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.btn-main {
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 80ms ease-out;
}
.btn-main:active {
  box-shadow: none;
}

.btn-main {
  padding: 0.375rem 1.5rem;
  border: 0;
}

#steps {
  margin-top: -60px;
  z-index: 2;
  position: relative;
}
#steps .container {
  background-image: url("../../images/background-texture.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 95px 80px 65px 80px;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 420px) {
  #steps .container {
    padding: 95px 20px 65px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  #steps .container {
    padding: 95px 35px 65px;
  }
}
@media (min-width: 320px) and (max-width: 420px) {
  #steps .container .step {
    margin-bottom: 20px;
  }
}
@media (min-width: 810px) and (max-width: 992px) {
  #steps {
    margin-top: -30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #steps {
    margin-top: -70px;
    z-index: 2;
    overflow: visible;
    position: relative;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  #steps {
    margin-top: -151px;
    z-index: 2;
    overflow: visible;
    position: relative;
  }
}
#steps .color-main {
  color: #ce9233;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}
#steps p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
}
#steps span {
  position: absolute;
  opacity: 0.2;
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  top: -50px;
}

#about {
  padding: 50px 0;
  background-image: url("../../images/image-3.jpg");
  background-position: bottom right;
  background-repeat: no-repeat;
}
#about .light-text {
  color: #254388;
  border: 5px solid #254388;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
}
#about h1 {
  text-transform: uppercase;
  font-size: 70px;
  color: #A5690A;
}
@media (min-width: 320px) and (max-width: 420px) {
  #about h1 {
    font-size: 36px;
  }
}
#about h3 {
  font-size: 30px;
}
#about .icon {
  color: #254388;
  position: relative;
  font-size: 60px;
  margin-right: 23px;
  line-height: 50px;
  margin-top: 7px;
}
#about h4 {
  margin-right: 30px;
}
@media (min-width: 320px) and (max-width: 420px) {
  #about .btn {
    width: 100%;
  }
}

#services {
  background-image: url("../../images/parallax.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 0;
}
#services h1 {
  text-transform: uppercase;
  color: #fff;
}
#services .light-blue {
  color: #ce9233;
}
#services .card {
  border-radius: 0;
  border: 0;
  margin: 0 15px;
}
#services .card-body {
  text-align: center;
  padding: 20px;
  border-radius: 0;
  border: 0;
}
#services .card-body h2 {
  font-size: 28px;
}
#services .card-header {
  padding: 0;
  height: 277px;
  overflow: hidden;
  border-radius: 0;
  border: 0;
}

.owl-prev,
.owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block !important;
  border: 0px solid black;
}

.owl-prev {
  left: -20px;
}

.owl-next {
  right: -20px;
}

.owl-prev .svg-inline--fa,
.owl-next .svg-inline--fa {
  color: #fff;
}

.owl-item .active::nth-child(2) {
  opacity: 0;
}

#case-study {
  padding: 50px 0;
  padding-bottom: 60px;
  background-image: url("../../images/Untitled.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#case-study p {
  font-size: 16px;
}
#case-study h1 {
  color: #254388;
  text-transform: uppercase;
}
#case-study .light-blue {
  color: #ce9233;
}
#case-study .item-content {
  padding: 30px 40px 30px;
}
#case-study .blue-container {
  background-color: #254388;
  color: #fff;
}
#case-study .blue-container a {
  color: #fff;
}
#case-study .blue-container h2 {
  text-transform: uppercase;
  font-size: 24px;
}
#case-study .blue-container .btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
#case-study .yellow-container {
  background-color: #ce9233;
  color: #254388;
}
#case-study .yellow-container a {
  color: #254388;
}
#case-study .yellow-container h2 {
  text-transform: uppercase;
  font-size: 24px;
}
#case-study .yellow-container .btn {
  background-color: transparent;
  color: #254388;
  border: 1px solid #254388;
}
#case-study .col-md-6 {
  padding: 0;
}

.background--side-by-side {
  display: flex;
  background-image: url("../../images/news-image.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.background--side-by-side h1 {
  text-transform: uppercase;
}
.background--side-by-side .news-list {
  padding-left: 0;
}
.background--side-by-side .news-list li {
  margin-bottom: 20px;
}
.background--side-by-side .news-container {
  background-color: rgba(37, 67, 136, 0.7);
  color: white;
  padding: 20px;
}
.background--side-by-side .news-container .learn-more {
  text-decoration: underline;
  color: #fff;
}
.background--side-by-side .news-container span {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.background--side-by-side .news-container p {
  margin-bottom: 0;
}
.background--side-by-side .news-container .btn {
  background-color: #fff;
  color: #002142;
  margin-top: 20px;
}

.quote-form {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
.quote-form h1 {
  color: #254388;
}
.quote-form p {
  color: #002142;
}
.quote-form label {
  width: 100%;
}

.brands-section {
  padding: 40px 0;
}
.brands-section h1 {
  color: #254388;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.brands-section h2 {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.brands-section hr {
  width: 50px;
  height: 5px;
  background-color: #ce9233;
  border-top: 0;
}

.card {
  height: 100%;
}

header {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../img/header-bg.jpg);
}
header .container-fluid {
  padding-right: 0;
  padding-left: 43px;
}
@media (min-width: 768px) {
  header .container-fluid {
    padding-right: 43px;
    padding-left: 43px;
  }
}
@media (min-width: 1024px) {
  header .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 1200px) {
  header .container-fluid {
    padding-right: 0px;
    padding-left: 43px;
  }
}
header .header-logo {
  max-width: 6rem;
}
header .navbar {
  padding: 0;
}
header .header-content {
  display: grid;
  grid-template-rows: auto 1fr;
}
header .navbar-collapse {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  background: whitesmoke;
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  header .navbar-collapse {
    position: relative;
    top: 0;
  }
}
header .navbar-collapse a {
  color: #000;
}
header .dropdown-menu {
  background: whitesmoke;
  border: none;
  padding: 0;
  margin: 0;
}
header .phone a {
  position: relative;
  top: 10px;
  color: #fff;
}

.focus-area {
  position: relative;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.17), 0 4px 8px rgba(0, 0, 0, 0.17);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: scale3d(1, 1, 1);
  transition: transform 250ms ease-out;
}
.focus-area:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}
.focus-area > .focus-title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.533) 30%, rgba(255, 255, 255, 0.267) 100%);
  color: #fff;
}
.focus-area > .focus-title > h3 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  font-size: 1.75rem;
}
@media screen and (min-width: 992px) {
  .focus-area > .focus-title > h3 {
    font-size: 1.5rem;
  }
}

.focus-img {
  height: 0;
  padding-top: 100%;
  position: relative;
  max-height: 22rem;
  overflow: hidden;
}
.focus-img > img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

@supports (object-fit: cover) {
  .focus-img {
    width: 100%;
    height: 0;
    padding-top: 100%;
    max-height: none;
  }
  .focus-img > img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
}
.home-news p {
  color: #ababab;
  font-size: 17px;
}
.home-news p a {
  color: #c9c9c9;
}

.welcome-img {
  margin-top: 1rem;
}

@supports (-webkit-text-fill-color: transparent) {
  @media (min-width: 1024px) {
    .welcome-img {
      margin-top: -5.35rem;
    }
  }
  @media (min-width: 1200px) {
    .welcome-img {
      margin-top: -5.35rem;
    }
  }

  .outline {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.case-study .blue-text {
  background-color: #254388;
  color: #ececec;
  padding: 20px;
}
.case-study .blue-text a {
  color: #ececec;
}
.case-study .blue-text .btn {
  background-color: #ececec;
  color: #254388;
}

.home-quote {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../img/welder.jpg") 30% center/cover;
  background-attachment: initial;
}
@media screen and (min-width: 768px) {
  .home-quote {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../img/welder_md.jpg");
    background-position: 20% center;
  }
}
@media screen and (min-width: 1200px) {
  .home-quote {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../img/welder_md.jpg") 30% center/cover;
    background-position: 20% center;
    background-attachment: fixed;
  }
}

.home-news {
  background: #002142;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  border-radius: 0;
}

.modal-dialog {
  max-width: 32rem;
}
@media screen and (min-width: 992px) {
  .modal-dialog {
    max-width: 800px;
  }
}

.industry {
  /*  IMPORTANT CODE BELOW */
}
.industry .slider {
  height: 60px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.industry .slider::before,
.industry .slider::after {
  position: absolute;
  background-image: linear-gradient(to right, whitesmoke 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  width: 25%;
  z-index: 2;
  pointer-events: none;
}
.industry .slider::before {
  left: 0;
  top: 0;
}
.industry .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.industry .slide-track {
  width: 3000px;
  display: flex;
  animation: scroll 20s linear infinite;
  justify-content: space-between;
}
.industry .slide-track2 {
  width: 2250px;
  display: flex;
  animation: scroll2 15s linear infinite;
  justify-content: space-between;
}
.industry .slide {
  height: 60px;
  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
}
.industry .slide:hover {
  transform: scale(0.8);
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-1500px);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-750px);
  }
}
@media screen and (max-width: 768px) {
  .slide-track {
    width: 1600px;
  }

  .slide-track2 {
    width: 1200px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-800px);
    }
  }
  @keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-400px);
    }
  }
}
footer a {
  transition: padding 150ms ease-out;
}

footer .d-flex {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
footer .d-flex li a {
  color: #fff;
}

footer .d-flex > li {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
}

footer address {
  font-size: 16px;
  color: #b7b7b7;
}

.footer-logo {
  background: white;
  border: 5px solid #6e82af;
  max-width: 8rem;
  margin: auto;
}

#services .image-container {
  height: 200px;
  overflow: hidden;
}
#services .card-body {
  padding: 6px;
}
#services .card-body h1 {
  color: #254388;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 10px;
}
#services .card-body p {
  font-size: 16px;
  margin-bottom: 10px;
}
#services .col-xl-4 {
  margin-bottom: 30px;
}

.news-items {
  margin-bottom: 15px;
}
.news-items .card {
  border-radius: 3px;
  border: 0;
  background-color: #324d67;
  color: #999;
}
.news-items .card h3 {
  text-transform: uppercase;
  color: #ececec;
}
.news-items .card a {
  color: #ececec;
}
.news-items .card .news-btn {
  color: #ce9233;
}
.news-items .card .image-container {
  height: 300px;
  overflow: hidden;
}
.news-items .card img {
  width: 100%;
}
.news-items .card .news-link {
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.iframe-container iframe {
  width: 100% !important;
}

.contact-information span.contact-title {
  color: #A5690A;
  text-transform: capitalize;
  font-weight: 700;
  border: 4px solid #A5690A;
  padding: 5px 10px;
  font-size: 18px;
}
.contact-information h1 {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 64px;
  line-height: 58px;
  color: #333333;
}
.contact-information .teamlist {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.contact-information .teamlist .icon-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact-information .teamlist .icon {
  background: #A5690A;
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #ececec;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 23px;
  margin-bottom: 10px;
}
.contact-information .teamlist .fa-user {
  position: relative;
  top: 10px;
}
.contact-information .teamlist .content {
  margin-bottom: 10px;
  width: calc(100% - 85px);
}
.contact-information .teamlist .content h1 {
  position: relative;
  font-size: 32px;
  text-transform: uppercase;
  color: #333;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-information .teamlist .content .text {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
  color: #797672;
  margin: 0 0 15px;
  line-height: 32px;
}

.cs {
  background-color: #ce9233;
  color: #333333;
}
.cs .container {
  padding: 100px 0;
}
.cs .cover-image.small-cover {
  width: 38%;
}
.cs .cover-image {
  background-position: 50% 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
  bottom: -111.4%;
}
.cs h1, .cs span {
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
.cs span {
  color: #ececec;
}

.services-text h1 {
  color: #fff;
  font-family: "raleway", sans-serif;
}
.services-text span {
  color: #c5c5c5 !important;
}

.news-item {
  padding: 40px 0;
}
.news-item a {
  text-transform: uppercase;
  color: #002142;
}
.news-item h1 {
  margin-bottom: 30px;
}
.news-item .news-btn {
  background-color: #ce9233;
  color: #002142;
  padding: 10px 15px;
}

.news-detail-item .box-container {
  border: 1px solid #e9e9e9;
  margin-top: 15px;
  padding: 5px 10px;
  margin-bottom: 15px;
}
.news-detail-item .box-container .news-link {
  color: #002142;
}
.news-detail-item .box-container .fa-link {
  color: #ce9233 !important;
}

.services-card {
  border-radius: 0;
}
.services-card .image-container {
  height: 250px;
  overflow: hidden;
}
.services-card .card-body {
  padding: 40px 20px 20px;
  text-align: center;
}
.services-card .card-body h1 {
  font-size: 34px;
  text-transform: uppercase;
  color: #254388;
}
.services-card .card-body p {
  font-size: 18px;
}
.services-card .card-body .services-btns {
  padding: 15px 60px;
  background-color: #f9f8f7;
  color: #002142;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-container h1 {
  color: #254388;
}
.services-container p {
  color: #666;
}
.services-container a {
  color: #254388;
  font-weight: 500;
  font-size: 28px;
}
.services-container a .fa-file-pdf {
  color: #ce9233;
  font-size: 28px;
}

.align-items-center {
  background-color: #f7f8f8;
  margin-bottom: 20px;
  border: none;
}
.align-items-center .col-lg-4, .align-items-center .col-lg-8 {
  padding: 0;
}
.align-items-center .item-content {
  padding: 40px;
}
.align-items-center h1 {
  color: #254388;
}
.align-items-center h1 a {
  color: #254388;
  font-size: 28px;
  text-transform: uppercase;
}
.align-items-center h1 a:hover {
  text-decoration: none;
  color: #254388;
}
.align-items-center .btn:hover {
  color: #ececec;
  text-decoration: none;
}
.align-items-center p {
  font-size: 16px;
}

.item-media {
  overflow: hidden;
}

.image-background {
  background-image: url("../../images/form-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}
.image-background .form-card {
  background-color: rgba(37, 67, 136, 0.6);
  color: #ececec;
}
.image-background .form-card label {
  width: 100%;
}
.image-background .form-card input, .image-background .form-card textarea, .image-background .form-card select {
  background-color: white !important;
  border: none;
  border-bottom: 1px solid #ececec;
  color: #254388 !important;
}
.image-background .form-card input::placeholder, .image-background .form-card textarea::placeholder, .image-background .form-card select::placeholder {
  color: #6e82af !important;
}
.image-background .form-card .form-btn {
  border: none;
  background-color: #ececec;
  color: #00264d;
}

.quote-text {
  padding-top: 150px;
  color: #ececec !important;
}
.quote-text span {
  color: #ececec !important;
}

.contact-form {
  margin-bottom: 30px;
  background-color: #cccccc;
  padding: 20px;
}
.contact-form label {
  width: 100%;
}
.contact-form label input, .contact-form label textarea, .contact-form label select {
  background-color: #f9f8f7;
  border: none;
}
.contact-form label input::placeholder, .contact-form label textarea::placeholder, .contact-form label select::placeholder {
  color: #666;
}
.contact-form label input {
  padding: 20px;
}

.company-text h1 {
  color: #ce9233;
}

.circle-icon {
  background: #fff;
  border: 5px solid #374ba3;
  box-shadow: 0 0 0 6px #fff;
  display: block;
  padding: 45px 50px;
  font-size: 355%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  top: 17px;
}
@media screen and (min-width: 768px) {
  .circle-icon {
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .circle-icon {
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .circle-icon {
    position: absolute;
    top: -24px;
    left: -19px;
  }
}

.circle-icon span {
  color: #254388;
  position: relative;
  top: -10px;
}

.loan-process .card-header {
  background: #254388;
  padding: 2rem 1.25rem 1rem 1.25rem;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
@media screen and (min-width: 1200px) {
  .loan-process .card-header {
    padding: 2rem 6rem 1rem 9rem;
  }
}

.loan-process .card {
  text-align: center;
  margin-bottom: 70px;
  padding: 15px 20px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .loan-process .card {
    padding: 15px 130px;
  }
}
.loan-process .card ul {
  list-style-type: disc;
}

.loan-process h2 {
  font-size: 27px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .loan-process h2 {
    font-size: 30px;
  }
}

/*# sourceMappingURL=design.css.map */
