@charset "utf-8";
/* CSS Document */

/* === HEADING STYLE #1 === */
h1 {
  position: relative;
  padding: 0;
  margin: 0;
  /*font-family: "Raleway", sans-serif;
  font-weight: 300;*/
  font-size: 40px;
  color: #114D66;
  font-weight: 900;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h1 span {
  display: block;
  /*font-size: 0.5em;*/
  line-height: 1.3;
}

.one h1 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.one h1:before {
  width: 48px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -24px;
  background-color: #C69C6D;
}
.one h1:after {
  width: 150px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 15px;
  left: 50%;
  margin-left: -75px;
  background-color: #C69C6D;
}


.custom-btn {
  /*width: 130px;
  height: 40px;*/
  color: #fff;
  border-radius: 50px;
  padding: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

/* AA */
.btn-AA {
    border: outset #ffffff 4px;
	background: rgb(255,255,0);
    background: linear-gradient(135deg, rgba(255,255,0,1) 0%, rgba(90,199,231,1) 20%, rgba(0,89,171,1) 50%, rgba(90,199,231,1) 80%, rgba(255,255,0,1) 100%);
    color: #fff;
    overflow: hidden;
}
.btn-AA:hover {
    text-decoration: none;
    color: #fff;
}
.btn-AA:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btnA 3s ease-in-out infinite;
}
/*.btn-AA:hover{
  opacity: .8;
}*/
.btn-AA:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btnA {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

