.mainbk {
  background-color: #4e9ec1;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}

.rounded-pill {
  border-radius: 25px;
}

.textCl {
  color: #134F77;
}

.qatextCl {
  color: #4e9ec1;
}

.textCl2 {
  color: #4c4c4c;
}

.lettersp {
  letter-spacing: 4px;
}

.w40 {
  width:40%;
}

.text-break {
  overflow-wrap: break-word;
  word-break: keep-all;
}

.bg-input-background {
  background-color: #fffde1;
}

.bg-btn-background {
  background-color: #AA0400;
  color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 50px;
}

.redCl {
  color: #AA0400;
}

.button_solid015 {
  text-align: center;
}
.button_solid015 p {
  margin-bottom: 5px;
  font-weight: 600;
  color: #AA0400;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.button_solid015 p:before, .button_solid015 p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 3px;
  border-radius: 5px;
  background-color: #AA0400;
  content: "";
}
.button_solid015 p:before {
  left: -30px;
  -webkit-transform: rotate( 50deg );
  transform: rotate( 50deg );
}
.button_solid015 p:after {
  right: -30px;
  -webkit-transform: rotate( -50deg );
  transform: rotate( -50deg );
}
.button_solid015 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #AA0400;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 50px;
}
.button_solid015 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease, visibility 2s ease;
  height: 0;
}
.show {
  transition: opacity 2s ease, visibility 2s ease, height 3s ease;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}