@font-face {
    font-family: 'Axiforma';
    src: url('/guests/collections/fonts/Axiforma-Regular.eot');
    src: url('/guests/collections/fonts/Axiforma-Regular.eot?#iefix') format('embedded-opentype'),
        url('/guests/collections/fonts/Axiforma-Regular.woff2') format('woff2'),
        url('/guests/collections/fonts/Axiforma-Regular.woff') format('woff'),
        url('/guests/collections/fonts/Axiforma-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
	font-family: 'Axiforma', sans-serif;
	margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

body h1{
	font-size: 2.5em;
  }

html body.no-scroll {
    overflow: hidden;
}

body h2 {
	font-size: 2em;

}

body h3 {
	font-size: 1.7em;
}

body h4 {
	font-size: 1.5em;
}

body h5 {
	font-size: 1.3em;
}

body h6 {
	font-size: 1em;
}

body .btn:focus {
outline: none;
}

body img {
  max-width: 100%;
}

body header nav .navbar-brand img {
	height: 30px;
}

body .slider-arrow:hover {
    animation: none;
}
body .slider-arrow {
    position: absolute;
    cursor: pointer;
    bottom: 15px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation: float 2s infinite;
    animation: float 1.5s infinite;
    box-sizing: border-box;
    z-index: 2;
     width:100%;
     text-align: center;
}

::placeholder{
  color: #72787a;
  font-size: 12px;
}

 body .slider-arrow i {
    font-size: 2em;
    color: #ffffff;
}

body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body .btn {
  background-color: transparent;
  letter-spacing: 3px;
  font-size: 16px;
  padding: 8px 30px 4px;
  font-weight: 500;
  border-radius: 12px;
  text-transform: uppercase;
  transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}

body .btn:hover {
    background-color: #ff0046;
    border-color: #ff0046 !important;
    color: #ffffff;
}
 body .btn.btn-transparent{
  border-color:#fff !important;
  color:#fff !important;
 }
body .btn.btn-transparent:hover, body button.btn.btn-white.hover-pink:hover{
  background-color: #ff0046 !important;
    border-color: #ff0046 !important;
    color: #ffffff;
}
 body .btn.btn-white{
  background-color:white;
 }
.btn.btn-white:hover {
    background: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}
body .btn.btn-pink{
  background-color:#ff0046 !important;
  color:#fff;
}
.btn.btn-pink:hover {
    background: transparent !important;
    border-color: #ff0046 !important;
    color: #ff0046 !important;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff0046;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(0deg) translate(0px, 15px);
  }
  40% {
    -webkit-transform: rotate(0deg) translate(0, 0);
  }
}
@keyframes float {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  20% {
    transform: rotate(0deg) translate(0px, 15px);
  }
  40% {
    transform: rotate(0deg) translate(0, 0);
  }
}

@-webkit-keyframes smoothScroll{
  0%{
    -webkit-transform:translateY(-100px);
    transform:translateY(-100px)
  }
  to
  {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes smoothScroll{
  0%{
    -webkit-transform:translateY(-100px);
    transform:translateY(-100px)
  }
  to{
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
