/* PLACE YOU CUSTOM STYLES IN THIS FILE */
.btn {
  position: relative;
  display: inline-block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}

.btn-l {
  display: block;
  margin-right: 0;
  margin-bottom: 1.4rem;
  height: 4rem;
  padding: 0 2rem;
  border: 2px solid #ffffff;
  -moz-border-radius: 2rem;
       border-radius: 2rem;
  font: normal 600 1.4rem/3.6rem "Poppins", sans-serif;
  color: #ffffff;
}
.btn-l:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}
.btn-l .btn-title {
  display: block;
  position: relative;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.btn-l .btn-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -o-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  -moz-transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  transition: transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -webkit-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09), -moz-transform 0.3s cubic-bezier(0.23, 0.65, 0.74, 1.09);
}
.no-touch .btn-l:hover .btn-title {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.no-touch .btn-l:hover .btn-hover {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 576px) {
  .btn-l {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .btn-l:last-of-type {
    margin-right: 0;
  }
}

.btn-l-icon {
  display: block;
  position: relative;
  margin-right: 0;
  margin-bottom: 1.4rem;
  height: 4rem;
  padding: 0 4.5rem 0 2rem;
  -moz-border-radius: 2rem;
       border-radius: 2rem;
  font: normal 600 1.4rem/3.6rem "Poppins", sans-serif;
}
.btn-l-icon:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}
.btn-l-icon span,
.btn-l-icon i {
  display: inline-block;
}
.btn-l-icon .btn-icon-anim {
  display: block;
  position: absolute;
  top: 0;
  right: 2rem;
  width: auto;
  height: 3.6rem;
  overflow: hidden;
}
.no-touch .btn-l-icon:hover i {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
          animation: 0.4s ease-in-out 0s 1 both slideOutLeft;
}
@media only screen and (min-width: 576px) {
  .btn-l-icon {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .btn-l-icon:last-of-type {
    margin-right: 0;
  }
}

.btn-outline-light {
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

.btn-light {
  font-weight: 700;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #141414;
}
