
.left-content {
  background: #FF0000;
  position: relative;
}

.left-content .inner-content {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.left-content h4 {
  font-family: 'Dancing Script', cursive;
  color: #fff;
  font-size: 54px;
  font-weight: 700;
}

.left-content h6 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  margin-top: 5px;
}

.left-content .main-white-button  {
  margin-top: 25px;
  margin-bottom: 10px;
}

.left-content .main-white-button a {
  display: inline-block;
}


.main-white-button a {
  font-size: 1rem;
  color: #FF0000;
  background-color: #fff;
  padding: 12px 25px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  transition: all .3s;
}

.main-white-button a:hover {
  opacity: 0.9;
}


footer {
  background-color: #FF0000;
}

footer .left-text-content p {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  text-align: right;
}

footer .right-text-content p {
  color: #fff;
  font-size: 14px;
  margin-right: 15px;
  text-transform: uppercase;
}


footer .right-text-content {
  text-align: left;
  margin-top: 10px;
}

footer .logo {
  text-align: center;
}

footer .right-text-content ul li {
  display: inline-block;
  margin-left: 15px;
}
footer .right-text-content ul li:first-child {
  margin-left: 0px;
}


footer .right-text-content ul li a {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  color: #FF0000;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

footer .right-text-content ul li a:hover {
  color: #2a2a2a;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	overflow: hidden;
	background: #FF0000;
}


.imgLoader {
	width: 80px;
	object-fit: contain;
	position: fixed;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	animation: glowFade 1s ease-in-out infinite;
	z-index: 9999;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	border: 6px solid #FFFFFF;
	border-top-color: #FF0000;
	border-radius: 50%;
	width: 105px;
	height: 105px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes glowFade {
	to {
		top: calc(50% - 10px);
		left: calc(50% - 10px);
		width: 40px;
		opacity: 0.1;
	}
	from {
		top: calc(50% - 25px);
		left: calc(50% - 25px);
		width: 80px;
		opacity: 1;
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}