@charset "utf-8";
/* CSS Document */


a {
	text-decoration-line: none;
}
a:hover{
	text-decoration-line: none;
}

p, li {
	font-weight: bolder;
}

.bg1 {
	background: url("../images/bg.jpg") repeat center top
}


.font-oswald {
  font-family: "Oswald", sans-serif;
}
.font-crimson {
  font-family: "Crimson Text", serif;
}
.font-nunito {
  font-family: "Nunito", sans-serif;
}



.button {
  border-radius: 4px;
  background-color: #333;
  border: none;
  color: #FFF;
  text-align: center;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover {background-color: #c31111}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}






.wrap1 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button1 {
  color: #FFFFFF;
  background: #c31111;
background: linear-gradient(90deg, rgba(195,17,17,1) 0%, rgba(195,17,17,1) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(0,0,0,.3);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

.button1::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button1:hover, 
.button1:focus {
  color: #FFFFFF;
  transform: translateY(-6px);
}

.button1:hover::before, 
.button:focus::before {
  opacity: 1;
}

.button1::after {
  content: '';
  width: 60px; height: 60px;
  border-radius: 100%;
  border: 6px solid #c31111;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button1:hover::after, 
.button1:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.blink {
    background-color: black;
    -webkit-animation: blink 800ms step-end infinite;
            animation: blink 800ms step-end infinite;
}
@-webkit-keyframes blink { 50% { background-color: #c31111; }}
        @keyframes blink { 50% { background-color: #c31111; }}