body {
    font-family: 'Poppins', sans-serif;
}

.container-fluid {
    margin-top: 75px !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.home-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../images/bg.jpg') center no-repeat;
    background-size: cover;
}.home-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.35);
}.home-container h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 900 !important;
    word-spacing: 10px;
    color: transparent;
    -webkit-text-stroke: 2px #181818;
}

.form-container {
    position: relative;
    padding: 30px 0px;
    background: url('../images/bg.jpg') center no-repeat;
    background-size: cover;
}.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.5);
}

.btn-fonepay {
    background: #cf2027;
    color: #fff;
}

.btn:hover {
    transform: scale(1.02);
    transition: .1s transform ease-in-out;
}

.bg-header {
    background: #f3f3f3;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}