/*------------------------------------------------------------------

Script Name: RentGen - Online Rent Receipt Generator
Script Description: 
Version: 1.0
Author: BootPeople

* This file contains the styling for this theme. If you want to change any style of the theme, just edit from here. But, before editing anything, please make sure that you have proper css knowledge. Also, if you want to edit style of responsive version, then please edit the responsive.css file available at assets/css/responsive.css

-------------------------------------------------------------------*/
/*------------------------------------------------------------------

[TABLE OF CONTENTS]

	01. Global Styles
    02. Preloaders
    03. Buttons
    04. Intro Section
    05. Header Section
		5.1. Header and Sticky Bar
		5.2. Logo
		5.3. Main Menu
    06. About Us Section
    07. Our Menu Section
    08. Gallery Section
    09. Our Team Section
	10. Video Section
	11. Testimonial Section
	12. Event Section
	13. rentgen Form Section
	14. Google Map Section
    15. Footer Area
	16. Copyright

-------------------------------------------------------------------*/

/*-----------------------------
 1. Global Styles 
-------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

body {
    color: #333333;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:700;
}

.clear {
    clear: both;
}

img {
    max-width: 100%;
    object-fit: cover;
}

a, a:hover {
    text-decoration: none;
    color:#333;
    font-weight:bold;
}

.section-padding {
    padding: 80px 0;
}

.section-heading {
    margin-bottom:30px;
}

.section-heading span {
    color:#ba334d;
}

.rentgen-block {
    background: #f1f1f1 url('assets/img/background-image_mini.jpg') no-repeat fixed center center;
    background-size: cover;
   min-height:100vh;
}

/*-----------------------------
2. Preloaders
-------------------------------*/
.spinner {
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
  background-color: #ffffff;
  border-radius: 100%;  
  height: 40px;
  margin: 100px auto;
  width: 40px;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

.rentgen-preloader-wrap {
    background: #ba334d none repeat scroll 0 0;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}
.rentgen-preloader-wrap .spinner {
    left: 50%;
    margin: -20px 0 0 -20px;
    position: absolute;
    top: 50%;
}