/* ---------font-------- */

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url(https://fonts.gstatic.com/s/robotocondensed/v28/ieVi2ZhZI2eCN5jzbjEETS9weq8-19K7CA.ttf) format('truetype');
}

/* ---------global-------- */

html, body {
  font-family: 'Open Sans', sans-serif;
  background-color: #474a56;
}

.hidden {
  display: none;
}

.show {
  display: block;
}

/* ---------slides--------- */

/* h1 {
  display: block;
  font-size: 70px;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  color:#fff;
  text-align: center;
  letter-spacing: 2px;
  margin: 50px auto;
  } */

/* .slider {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center; 
  margin: 50px auto 100px;
} */

.slider-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #252525;
  /* background: linear-gradient(214deg,#32be59 0, #f6bf9f 100%); */
  /* text-align: center; */
  margin: 0 auto;
  border-radius: 7px;
  overflow: hidden;
}

.slider-wrapper .slide:nth-child(2n) {
  /* background-color: #fff; */
  color: #dc8cdb;
}

.slide {
  display: none;
  position: relative;
	width: 100%;
	height: 100%;
  /* font-size: 30px; */
  font-weight: bold;
  /* text-transform: uppercase; */
	opacity: 0;
	transition: opacity 500ms linear;
}

.slide.active {
  display: flex !important;
  position: relative;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 500ms linear;
}

/* ---------buttons--------- */

.nav-md {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 10px 0px;
  /* background-color: #fff; */
  border-radius: 10px;
}

.btn {
  display: contents;
  position: relative;
  text-align: center;
}

.btn button {
  display: inline-block;
  width: 20%;
  max-width: 40px;
  border-radius: 10px;
  border: 1px solid #da7b00;
  background-color: #252525;
  color: #da7b00;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 5px;
  margin: 0px 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn button:hover {
  color: #252525;
  border: transparent;
  background: linear-gradient(214deg,#bb8000 0, #f6bf9f 100%);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition:  all 0.35s ease-in-out;
  -ms-transition:  all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn button:active {
	transform: scale(0.95);
}

.btn button:focus {
	outline: none;
}

.btn button.ghost {
	background-color: transparent;
	border-color: #252525;
}

.slider-pagination {
  display: contents;
  max-height: 60px;
}

.slider-pagination a {
  display: flex;
  position: relative;
  width: 25px;
  height: 25px;
  background: #252525;
  font-size: 14px;
  color: #da7b00 !important;
  text-align: center;
  vertical-align: middle;
  float: left;
  justify-content: center;
  align-items: center;
  border: 1px solid #da7b00;
  border-radius: 30%;
  margin: 0px 0.3em;
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: all 0.21s ease-in;
  -moz-transition: all 0.21s ease-in;
  -ms-transition: all 0.21s ease-in;
  transition: all 0.21s ease-in;
}

.slider-pagination a.current {
  width: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #252525 !important;
  vertical-align: middle;
  border-color: #bb8000;
  background: linear-gradient(214deg,#bb8000 0, #f6bf9f 100%);
  cursor: pointer;
  opacity: 1;
  transform: scale(1.2);
  -webkit-transition: all 0.21s ease-in;
  -moz-transition: all 0.21s ease-in;
  -ms-transition: all 0.21s ease-in;
  transition: all 0.21s ease-in;
}