/*loading*/

.Loading {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 10px;
  background: #f1f1f1;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
  border-radius: 4px;
  overflow: hidden;
}

.Loading:after {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  animation: load 2s ;
}

@keyframes load {
  0% {
    width: 0;
    background: #ff463b;
  }
  
  25% {
    width: 40%;
    background: #ff463b;
  }
  
  50% {
    width: 60%;
    background: #ff463b;
  }
  
  75% {
    width: 75%;
    background: #ff463b;
  }
  
  100% {
    width: 100%;
    background: #ff463b;
  }
}

@keyframes pulse {
  0% {
    background: #a28089;
  }
  
  25% {
    background: #a0d2eb;
  }
  
  50% {
    background: #ffa8b6;
  }
  
  75% {
    background: #d0bdf4;
  }
  
  100% {
    background: #494d5f;
  }
}

.h2, h2 {
    font-size: 2rem;
    font-family: sans-serif;
    color: #185a7d;
}
.h4, h4 {
    font-size: 1.5rem;
    color: #ff4438;
	font-family: sans-serif;
}
.h6, h6 {
    font-size: 0.7rem!important;
    font-family: sans-serif;
	font-weight:600!important;
	color:#8d8d8d;
}
.img30 {
    max-width: 30%;
}
.ctw {
    background: white;
    border-radius: 20px;
    margin-top: 50px;
    border: 3px dotted #eee;
}
/*end loading*/