html, body{
  margin: 0;
  padding: 0;
  font-family: Arial !important;
}
.wrapper{
  width:100%;
  text-align:center;
  /* background-color: #D5D6D2; */
}
h2{
  font-family:sans-serif;
  color:#fff;
  padding-top: 30px;
  /* background-color: #D5D6D2; */
}
.carousel{
  width:100%;
  margin:0px auto;
  /* background-color: #D5D6D2; */
  padding-bottom: 50px;
}
.slick-slide{
  margin-left:50px;
}
.slick-slide img{
  width:100%;
}
/* .slick-prev, .slick-next{
  background: #000;
  border-radius: 15px;
  border-color: transparent;
} */
.card{
  /* border: 2px solid #fff;
  box-shadow: 1px 1px 15px #ccc; */
  border-radius: 20px;
  background-color: white;
  /* width: 315px; */
}
.card-body{
  /* background: #fff; */
  width: 100%;
  vertical-align: top;
}
.card-content{
  text-align: right;
  color: #747678;
  padding: 15px;
  height: 200px;
}
.card-text{
  font-size: 14px;
  font-weight: 300;
}
.card-title{
  font-size: 18px;
  font-weight:bold;
}


.btn-primary:hover {
  color: #fff;
  background-color: #D5D6D2;
  border-color: #D5D6D2;
}
.btn.focus, .btn:focus, .btn:hover {
  color: #333;
  text-decoration: none;
}
a:focus, a:hover {
  color: #747678;
  text-decoration: underline;
}
a:active, a:hover {
  outline: 0;
}
.btn-group-lg > .btn, .btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-primary {
  color: #D5D6D2;
  background-color: #747678;
  border-color: #747678;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: 4px;
}
[role="button"] {
  cursor: pointer;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a {
  background-color: transparent;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-dots {
  /* background-color: #D5D6D2; */
  padding-bottom: 20px;
}

.slick-dots li.slick-active button::before {
  color: white;
}

@media (max-width: 860px) {	
  .card-text{
    font-size: 12px;
  }
	}

  .loader-page {
    position: fixed;
    z-index: 25000;
    /* background-color: rgba(250, 240, 245, 0.9); */
    background-color: #000000;
    opacity: 0.9;
    filter:opacity(80);
    left: 0px;
    top: -130px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
  }
  .loader-page::before {
    content: "";
    position: absolute;
    border: 2px solid rgb(50, 150, 176);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176,0);
    border-top: 2px solid rgba(50, 150, 176,0);
    animation: rotarload 1s linear infinite;
    transform: rotate(0deg);
  }
  @keyframes rotarload {
      0%   {transform: rotate(0deg)}
      100% {transform: rotate(360deg)}
  }
  .loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(50, 150, 176,.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
  }