html {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: 'Oxygen', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  font-weight: 300;
  background-color: #fcfcfc;
}


/*------------------------------------------------------------------*/


/*   IE10 in Windows 8 and Windows Phone 8 Bug fix
/*-----------------------------------------------------------------*/

@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}


/*------------------------------------------*/


/*  PAGE CONTENT
/*------------------------------------------*/

#page {
  overflow: hidden;
}


/*------------------------------------------*/


/*   BACKGROUND SETTINGS FOR SECTION
/*------------------------------------------*/

.bg-scroll {
  width: 100%;
  background-attachment: fixed !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-fixed {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-lightgrey {
  background-color: #f4f5f6!important;
}


/*------------------------------------------*/


/*  HEADERS
/*------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-family: 'Muli', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025rem;
}


/*------------------------------------------*/


/*  CONTENT
/*------------------------------------------*/

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #444;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

.img-responsive {
  display: inline-block;
}

.btn:hover {
  color: #333;
  background-color: #fff;
  border-color: #fff;
}

.btn:focus {
  color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn {
  background-color: transparent;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid var(--primary);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.btn-arrow {
  position: relative;
}

.btn-arrow span {
  display: inline-block;
  position: relative;
  -webkit-transition: transform 300ms ease-in-out;
  -moz-transition: transform 300ms ease-in-out;
  -o-transition: transform 300ms ease-in-out;
  -ms-transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  will-change: transform;
}

.btn-arrow:hover span,
.btn-arrow:focus span {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.btn-arrow i {
  font-size: 13px;
  line-height: 1;
  position: absolute;
  right: 0px;
  opacity: 0;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right 300ms ease-in-out;
  -moz-transition: right 300ms ease-in-out;
  -o-transition: right 300ms ease-in-out;
  -ms-transition: right 300ms ease-in-out;
  transition: right 300ms ease-in-out;
}

.btn-arrow:hover i,
.btn-arrow:focus i {
  opacity: 1;
  right: -18px;
}


/*------------------------------------------*/


/*   SECTION TITLE    
/*------------------------------------------*/

.section-title {
  margin-bottom: 60px;
  text-align: center;
  padding-right: 0;
}

.section-title h2 {
  color: #f12a02;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-title p {
  color: #2c3f69;
  font-size: 1.25rem;
  padding: 0 15%;
  margin-bottom: 0;
}

.white-color,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6,
.white-color p,
.white-color a,
.white-color li,
.white-color i,
.white-color span {
  color: #fff;
}

.grey-border {
  width: 100%;
  height: 2px;
  background-image: url(../images/border.png);
  background-position: center center;
}


/*------------------------------------------*/


/*   PRELOAD SPINNER   
/*------------------------------------------*/

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
}

#loader {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.cssload-box-loading {
  width: 75px;
  height: 75px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.cssload-box-loading:before {
  content: '';
  width: 75px;
  height: 8px;
  background: rgb(0, 0, 0);
  opacity: 0.1;
  position: absolute;
  top: 89px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.58s linear infinite;
  -o-animation: shadow 0.58s linear infinite;
  -ms-animation: shadow 0.58s linear infinite;
  -webkit-animation: shadow 0.58s linear infinite;
  -moz-animation: shadow 0.58s linear infinite;
}

.cssload-box-loading:after {
  content: '';
  width: 75px;
  height: 75px;
  background: rgb(110, 150, 220);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  animation: cssload-animate 0.58s linear infinite;
  -o-animation: cssload-animate 0.58s linear infinite;
  -ms-animation: cssload-animate 0.58s linear infinite;
  -webkit-animation: cssload-animate 0.58s linear infinite;
  -moz-animation: cssload-animate 0.58s linear infinite;
}

@keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 5px;
  }
  25% {
    transform: translateY(14px) rotate(22.5deg);
  }
  50% {
    transform: translateY(27px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 60px;
  }
  75% {
    transform: translateY(14px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@-o-keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 5px;
  }
  25% {
    -o-transform: translateY(14px) rotate(22.5deg);
  }
  50% {
    -o-transform: translateY(27px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 60px;
  }
  75% {
    -o-transform: translateY(14px) rotate(67.5deg);
  }
  100% {
    -o-transform: translateY(0) rotate(90deg);
  }
}

@-ms-keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 5px;
  }
  25% {
    -ms-transform: translateY(14px) rotate(22.5deg);
  }
  50% {
    -ms-transform: translateY(27px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 60px;
  }
  75% {
    -ms-transform: translateY(14px) rotate(67.5deg);
  }
  100% {
    -ms-transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 5px;
  }
  25% {
    -webkit-transform: translateY(14px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(27px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 60px;
  }
  75% {
    -webkit-transform: translateY(14px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}

@-moz-keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 5px;
  }
  25% {
    -moz-transform: translateY(14px) rotate(22.5deg);
  }
  50% {
    -moz-transform: translateY(27px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 60px;
  }
  75% {
    -moz-transform: translateY(14px) rotate(67.5deg);
  }
  100% {
    -moz-transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}

@-o-keyframes shadow {
  0%,
  100% {
    -o-transform: scale(1, 1);
  }
  50% {
    -o-transform: scale(1.2, 1);
  }
}

@-ms-keyframes shadow {
  0%,
  100% {
    -ms-transform: scale(1, 1);
  }
  50% {
    -ms-transform: scale(1.2, 1);
  }
}

@-webkit-keyframes shadow {
  0%,
  100% {
    -webkit-transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1);
  }
}

@-moz-keyframes shadow {
  0%,
  100% {
    -moz-transform: scale(1, 1);
  }
  50% {
    -moz-transform: scale(1.2, 1);
  }
}


/*------------------------------------------*/


/*   HERO    
/*------------------------------------------*/

#hero {
  background-image: url(../images/hero.jpg);
  padding-bottom: 350px;
  background-position: center center;
  position: relative;
  z-index: 3;
}

.hero-logo {
  text-align: center;
  padding-top: 160px;
}

.hero-txt {
  position: relative;
  padding-top: 45px;
}

#hero h3 {
  color: #f12a02;
  color: #eee;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

#hero h4 {
  color: #2c3f69;
  color: #ddd;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.5px;
}


/*------------------------------------------*/


/*   SELECT    
/*------------------------------------------*/

#select {
  padding-bottom: 40px;
  margin-top: -270px;
  position: relative;
}

#select .col-lg-4,
#i-pages .col-lg-4 {
  position: relative;
  z-index: 3;
  margin-bottom: 60px;
  text-align: center;
}

.select_link h4 {
  color: #2c3f69;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 40px;
}

.hover-overlay {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  ;
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, .2);
  -moz-box-shadow: 0 0 10px rgba(10, 10, 10, .2);
  box-shadow: 0 0 10px rgba(10, 10, 10, .2);
}

.hover-overlay img {
  -webkit-transition: all 600ms;
  -moz-transition: all 600ms;
  -o-transition: all 600ms;
  transition: all 600ms;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  text-align: center;
  zoom: 1;
  opacity: 0;
  -webkit-transition: all 350ms ease-out;
  -moz-transition: all 350ms ease-out;
  -o-transition: all 350ms ease-out;
  transition: all 350ms ease-out;
}

.item-overlay {
  opacity: 0;
  -moz-opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.45);
  -moz-transition: opacity 400ms ease-out;
  -webkit-transition: opacity 400ms ease-out;
  -o-transition: opacity 400ms ease-out;
  transition: opacity 400ms ease-out;
}

.hover-overlay:hover>img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.hover-overlay:hover .item-overlay {
  opacity: 1;
  -moz-opacity: 1;
}

.select_link:hover .overlay-content {
  bottom: 43%;
  opacity: 1;
  -moz-opacity: 1;
}


/*------------------------------------------*/


/*   FEATURES
/*------------------------------------------*/

#features {
  background: url(../images/tra-map.png) no-repeat fixed center center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 70px;
}

.fbox {
  text-align: center;
  background-color: var(--lightgrey_color);;
  border: 1px solid #eee;
  padding: 35px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .05);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, .05);
  box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.fbox h5 {
  color: #2c3f69;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 0;
}

.fbox img {
  width: 60px;
  height: 60px;
}


/*------------------------------------------*/


/*   INNER PAGES
/*------------------------------------------*/

#i-pages {
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}


/*------------------------------------------*/


/*   BANNER 
/*------------------------------------------*/

.banner-logo {
  margin-bottom: 30px;
}

#banner {
  background: url(../images/banner.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
}

#banner h3 {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

#banner h3 span {
  font-weight: 800;
}

#banner p {
  color: #fff;
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0;
  margin-bottom: 0;
}

#banner .btn {
  font-size: 16px;
  padding: 16px 45px;
  margin-top: 40px;
}


/*------------------------------------------*/


/*   FOOTER  
/*------------------------------------------*/

.footer {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}

.footer p {
  color: #888;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
}

.footer .svg-inline--fa {
  font-size: 1.15rem;
}


/*------------------------------------------*/


/*    SCROLL TO TOP 
/*------------------------------------------*/

#scrollUp {
  display: none;
  width: 40px;
  height: 45px;
  position: fixed;
  bottom: 20px;
  right: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-image: url(../images/icons/back-to-top.png);
  background-repeat: no-repeat;
  background-position: 50% 48%;
  background-color: rgba(35, 35, 35, 0.65);
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  transition: all 250ms linear;
}

#scrollUp:hover {
  background-color: #151515;
}

nav a#pull {
  display: none;
}

@media (min-width: 1441px) and (max-width: 1920.95px) {
  .st-content {
    margin: 0 15%;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .st-content {
    margin: 0 5%;
  }
  .section-title p {
    padding: 0 12%;
  }
  .hero-logo {
    text-align: center;
    padding-top: 130px;
  }
  #hero {
    padding-bottom: 330px;
  }
  #select .select_link,
  #i-pages .select_link {
    padding-left: 10px;
    padding-right: 10px;
  }
  .select_link:hover .overlay-content {
    bottom: 38%;
    opacity: 1;
    -moz-opacity: 1;
  }
}

@media (min-width: 1200px) and (max-width: 1280.95px) {
  .st-content {
    margin: 0 3%;
  }
  .section-title p {
    padding: 0 12%;
  }
  .hero-logo {
    text-align: center;
    padding-top: 130px;
  }
  #hero h4 {
    font-size: 1.4rem;
    padding: 0;
  }
  .fbox {
    padding: 35px 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199.95px) {
  .st-content {
    margin: 0 2%;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 1.15rem;
    padding: 0 8%;
  }
  .hero-logo {
    padding-top: 120px;
  }
  .hero-logo img {
    width: 324px;
    height: 80px;
  }
  .hero-txt {
    padding-top: 30px;
  }
  #hero {
    padding-bottom: 240px;
  }
  #hero h3 {
    font-size: 2.75rem;
    margin-bottom: 15px;
  }
  #hero h4 {
    font-size: 1.175rem;
    padding: 0;
  }
  #select {
    margin-top: -190px;
    padding-bottom: 40px;
  }
  #select .col-lg-4,
  #i-pages .col-lg-4 {
    margin-bottom: 40px;
  }
  .select_link h4 {
    font-size: 1.15rem;
    margin-top: 2rem;
  }
  #i-pages {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #features {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  #banner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .banner-logo {
    margin-bottom: 25px;
  }
  .banner-logo img {
    width: 264px;
    height: 65px;
  }
  #banner h3 {
    font-size: 2.25rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  #banner p {
    font-size: 1.35rem;
  }
  #banner .btn {
    font-size: 15px;
    padding: 15px 42px;
    margin-top: 35px;
  }
  .footer p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.95px) {
  .st-content {
    margin: 0 2%;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 2.15rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 1.1rem;
    padding: 0 10%;
  }
  .hero-logo {
    padding-top: 100px;
  }
  .hero-logo img {
    width: 264px;
    height: 65px;
  }
  .hero-txt {
    padding-top: 30px;
  }
  #hero {
    padding-bottom: 240px;
  }
  #hero h3 {
    font-size: 2.35rem;
    margin-bottom: 15px;
  }
  #hero h4 {
    font-size: 1.1rem;
    padding: 0;
  }
  #select {
    margin-top: -190px;
    padding-bottom: 40px;
  }
  #select .col-lg-4,
  #i-pages .col-lg-4 {
    margin-bottom: 40px;
  }
  .select_link h4 {
    font-size: 1.175rem;
    margin-top: 2rem;
  }
  #i-pages {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #features {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .fbox img {
    width: 55px;
    height: 55px;
  }
  #banner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .banner-logo {
    margin-bottom: 25px;
  }
  .banner-logo img {
    width: 243px;
    height: 60px;
  }
  #banner h3 {
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  #banner p {
    font-size: 1.175rem;
  }
  #banner .btn {
    font-size: 14px;
    padding: 14px 40px;
    margin-top: 35px;
  }
  .footer p {
    font-size: 0.925rem;
  }
  .footer .svg-inline--fa {
    font-size: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767.95px) {
  .st-content {
    margin: 0 2%;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 1rem;
    padding: 0;
  }
  .hero-logo {
    padding-top: 80px;
  }
  .hero-logo img {
    width: 243px;
    height: 60px;
  }
  #hero {
    padding-bottom: 200px;
  }
  .hero-txt {
    padding-top: 30px;
  }
  #hero h3 {
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 15px;
  }
  #hero h4 {
    font-size: 1.05rem;
    padding: 0;
  }
  #select {
    margin-top: -160px;
    padding-bottom: 40px;
  }
  #select .col-lg-4,
  #i-pages .col-lg-4 {
    margin-bottom: 40px;
  }
  .select_link h4 {
    font-size: 1.35rem;
    margin-top: 2rem;
  }
  #i-pages {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #features {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .fbox img {
    width: 75px;
    height: 75px;
  }
  #banner {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .banner-logo {
    margin-bottom: 25px;
  }
  .banner-logo img {
    width: 243px;
    height: 60px;
  }
  #banner h3 {
    font-size: 1.6rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  #banner p {
    font-size: 1.05rem;
  }
  #banner .btn {
    font-size: 14px;
    padding: 14px 35px;
    margin-top: 30px;
  }
  .footer p {
    font-size: 0.925rem;
  }
  .footer .svg-inline--fa {
    font-size: 1rem;
  }
  #scrollUp {
    bottom: 15px;
    right: 20px;
    width: 35px;
    height: 40px;
  }
}

@media (max-width: 479.95px) {
  .st-content {
    margin: 0;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 1.45rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 1rem;
    padding: 0 5%;
  }
  .hero-logo {
    padding-top: 80px;
  }
  .hero-logo img {
    width: 203px;
    height: 50px;
  }
  #hero {
    padding-bottom: 200px;
  }
  .hero-txt {
    padding-top: 30px;
  }
  #hero h3 {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 15px;
  }
  #hero h4 {
    font-size: 1rem;
    padding: 0;
  }
  #select {
    margin-top: -160px;
    padding-bottom: 40px;
  }
  #select .col-lg-4,
  #i-pages .col-lg-4 {
    margin-bottom: 40px;
  }
  .select_link h4 {
    font-size: 1.215rem;
    margin-top: 2.5rem;
  }
  #i-pages {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #features {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .fbox img {
    width: 65px;
    height: 65px;
  }
  #banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .banner-logo {
    margin-bottom: 25px;
  }
  .banner-logo img {
    width: 203px;
    height: 50px;
  }
  #banner h3 {
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  #banner p {
    font-size: 1.05rem;
  }
  #banner .btn {
    font-size: 14px;
    padding: 14px 35px;
    margin-top: 30px;
  }
  .footer p {
    font-size: 0.925rem;
  }
  .footer .svg-inline--fa {
    font-size: 1rem;
  }
  #scrollUp {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 40px;
  }
}