:root {
  --font-family: 'Lato', sans-serif;
  --borderHeaderColor: #E8E8E8;
  --lineColor: #D9D9D9;
  --brandColor: #024357;
  --brandColorLayer: rgba(2, 67, 87, 0.6);
  --serviceNumberColor: rgba(197, 197, 197, 0.25);
  --activeHeader: rgba(2, 67, 87, 0.6);
  --footerColor: #01232E;
  --white: #fff;
  --black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family) !important;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 !important;
}

input, textarea {
  border: 0;
  outline: none;
  box-shadow: 0;
}

hr {
  background-color: var(--lineColor);
  margin: 30px 0 !important
}

ul {
  margin: 0 !important
}

li {
  list-style-type: none
}

a {
  color: var(--black) !important;
  text-decoration: none !important;
}

@media only screen and (min-width: 992px) {
  h1 {
    font-size: 36px !important;
    font-weight: 600;
  }

  h2 {
    font-size: 30px !important;
    font-weight: 600;
  }

  h3 {
    font-size: 28px !important;
    font-weight: 600;
  }

  h4 {
    font-size: 22px !important;
    font-weight: 500;
  }

  h5 {
    font-size: 18px !important;
    font-weight: 500;
  }

  h6 {
    font-size: 14px !important;
  }

  p {
    font-size: 20px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 30px !important;
  }

  h2 {
    font-size: 26px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  h5 {
    font-size: 18px !important;
  }

  h6 {
    font-size: 14px !important;
  }

  p {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  h5 {
    font-size: 16px !important;
  }

  h6 {
    font-size: 14px !important;
  }

  p {
    font-size: 15px !important;
  }
}

/* General Style Rules */
.section-padding-20-0 {
  padding-bottom: 20px;
}

.section-padding-30-0 {
  padding-bottom: 30px;
}

.section-padding-50 {
  padding: 50px 0;
}

.section-padding-60 {
  padding: 60px 0;
}

.section-padding-70 {
  padding: 70px 0;
}

.section-padding-80 {
  padding: 80px 0;
}

.section-padding-90 {
  padding: 90px 0;
}

.section-padding-100 {
  padding: 100px 0;
}

.ml-5 {
  margin-left: 5px !important
}

.ml-10 {
  margin-left: 10px !important
}

.mr-5 {
  margin-right: 5px !important
}

.mr-10 {
  margin-right: 10px !important
}

.mt-5-0 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px
}

.mt-30 {
  margin-top: 30px
}

.mt-40 {
  margin-top: 40px
}

.mt-50 {
  margin-top: 50px
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px
}

.mb-30 {
  margin-bottom: 30px
}

.mb-40 {
  margin-bottom: 40px
}

.mb-50 {
  margin-bottom: 50px
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.btn-more {
  background: transparent;
  border: 1px solid var(--brandColor);
  border-radius: 2px;
  transition: 0.5s
}

.btn-more:hover {
  background: var(--brandColor);
  color: var(--white) !important
}

main {
  width: 100%;
}

/* Loader */
.loader {
  width: 100%;
  height: 100vh;
  background: var(--white);
  position: fixed;
  z-index: 10000000000;
  overflow: hidden;
}

@keyframes carAnimation {
  0% {
    transform: translateY(-0px);
  }

  10% {
    transform: translateY(-8px);
  }

  20% {
    transform: translateY(-0px);
  }

  30% {
    transform: translateY(-8px);
  }

  40% {
    transform: translateY(-0px);
  }

  50% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-0px);
  }

  100% {
    transform: translateX(3000px);
  }
}

.loader img {
  width: 55px;
  z-index: 100000;
  animation: carAnimation 2.5s;
  animation-fill-mode: forwards;
}

.loading .loading-icon svg {
  font-size: 10px
}

.body-hidden {
  overflow: hidden;
}

/* Scroll back to top button */
.scroll-to-top {
  width: 40px;
  height: 40px;
  background-color: var(--brandColor);
  border-radius: 50%;
  box-shadow: 0 0px 4px var(--brandColor);
  position: fixed;
  bottom: 90px;
  right: 10px;
  cursor: pointer;
  transition: 0.3s
}

.scroll-to-top .btn-scroll {
  color: var(--white);
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll-overlap {
  background-color: var(--brandColor);
  box-shadow: 0 0px 8px var(--brandColor);
}

.btn-overlap {
  color: var(--white)
}

.btn-hidden {
  opacity: 0;
}

.banner-navigation a {
  color: var(--white) !important
}