.order-1 {
    order: 1;
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1;
    }
}

.order-2 {
    order: 2;
}

@media (min-width: 992px) {
    .order-lg-2 {
        order: 2;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .img-md-small {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .mt-lg-9 {
        margin-top: 7rem;
    }
}

.black-background {
    background: rgb(47,47,47);
    background: -moz-linear-gradient(45deg, rgba(36, 36, 36) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(36, 36, 36) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(45deg, rgba(36, 36, 36) 0%, rgba(0,0,0,1) 100%);
}

.floating {
    transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.neon-text {
    font-weight: 800;
    color: #f1f1f1!important;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4)
}

.attention-text {
    font-weight: 800;
    color: #ff9600;
}

.btn-orange {
    background-color: #ff9600;
    font-weight: 800;
    border-radius: 1em;
    color: white;
}

.btn-attention {
    font-size: 14px;
    padding: 15px 50px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2.5s infinite;
}

.btn-orange:hover {
    background-color: #e28400;
    color: white;
}

.btn-orange-small {
    padding: 8px 25px;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
	}

	20% {
		transform: scale(1);
		box-shadow: 0 0 5px 10px rgba(255, 255, 255, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}