/*typography*/

body {
  font-family: 'Roboto';
  color: #212529;
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: 700;
  font-family: 'Oswald';
}

h1 {
  font-size: 50px;
  line-height: 65px;
}

h2 {
  font-size: 80px;
  line-height: 1;
}

h2.big {
  font-size: 120px;
  line-height: 1;
}

h3 {
  font-size: 32px;
  line-height: 47px;
}

h3.big {
  font-size: 36px;
  line-height: 50px;
}

h4 {
  font-size: 28px;
  line-height: 38px;
}

h5 {
  font-size: 24px;
  line-height: 30px;
}

p {
  color: #212529;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 2rem;
}
p.big {
  font-size: 36px;
  line-height: 50px;
}

a {
  color: #000000;
}

a:hover {
  color: #EE8B3F;
  text-decoration: none;
}

.border-left,
.border-right {
  border-color: #707070 !important;
}

.text-primary {
  color: #EE8B3F !important;
}

.text-underline {
  text-decoration: underline !important;
}

.light-bg {
  background: #FDFCFD;
}


/*spacing*/

.main-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.main-padding-top {
  padding-top: 100px;
}
.main-padding-bottom {
  padding-bottom: 100px;
}
.main-padding-large {
  padding-top: 180px;
  padding-bottom: 180px;
}


/*header*/

.navbar {
  padding: 60px 0 30px;
  background: #ffffff;
}


/*Banner*/

.banner-wrapper {
  min-height: 100vh;
  height: 1px;
  background-size: cover;
  background-position: center;
  background-image: url(../images/banner-bg.png);
  background-attachment: fixed;
}


/*slider*/

.owl-stage {
  display: flex;
}

.owl-carousel .item {
  background: #F3F3F3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  height: 100%;
}

.owl-carousel .item .logo-img {
  max-height: 150px;
}

.owl-carousel.owl-drag .owl-item {
  overflow: hidden;
}

.owl-carousel.owl-drag .item a {
  display: none;
}

.owl-carousel.owl-drag .item:hover a {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel.owl-drag .item:hover a img {
  width: 22px;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 0 auto;
}

.owl-carousel.owl-drag .item:hover a:after {
  content: '';
  background-color: #FFFFFF;
  border-radius: 50%;
  background-position: center;
  height: 60px;
  width: 60px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 53px;
  height: 53px;
  background: #EE8B3F;
  border: 2px solid #EE8B3F;
  position: relative;
  outline: none !important;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 45%;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -100px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -100px;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background: #ffffff;
  border-color: #EE8B3F;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  font-size: 45px;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next:hover span,
.owl-carousel .owl-nav button.owl-prev:hover span {
  color: #EE8B3F;
}


/*icon row*/

.row-icons h4 {
  font-family: 'Kievit';
}

.row-icons img {
  height: 47px;
}

.row-icons {
  display: flex;
  align-items: center;
}


/*footer*/

footer {
  background: #000000;
  padding: 40px 0;
}

footer a {
  color: #FFFFFF;
  text-decoration: none;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

footer ul li a {
  text-decoration: none !important;
  text-transform: uppercase;
}

footer ul li {
  margin-bottom: 0;
  list-style-type: none;
}