#lt-loader {
	opacity: 1;
	display: flex;
	visibility: visible;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background-color: #FFF;
    z-index: 10000;
    color: #fff;
    margin: auto;
	transition: 1.5s all ease-in-out;
	-webkit-transition: 1.5s all ease-in-out;
	-moz-transition: 1.5s all ease-in-out;
	-o-transition: 1.5s all ease-in-out;
}
#lt-loader img {
	width: 400px;
	max-width: 100%;
}


/*Animation*/
.animated {
	animation-duration:0.6s;
	animation-fill-mode:both;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	animation-delay: 0.3s;
	transition-delay: .3s;
	transition: all .6s cubic-bezier(.4,0,.2,1);
}
.animated.infinite{animation-iteration-count:infinite}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}




/*Main CSS*/
html {height: 100%;}
body {
	font-family: 'Open Sans', Georgia, Arial, sans-serif;
	background: #fff;
	font-size: 1rem;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #505e7e;
	line-height: 1.6em;
	direction: ltr;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	
	transition: 1s all ease-in;
	-webkit-transition: 1s all ease-in;
	-moz-transition: 1s all ease-in;
	-o-transition: 1s all ease-in;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', Georgia, Arial, sans-serif;
	color: #091e40;
}
p, .form-control, blockquote {
	text-align: justify;
}
.text-justify-center {
	-moz-text-align-last: center;
    text-align-last: center;
}
ul {
	list-style: none;
	padding: 0;
}
section, footer {
	padding: 80px 0;
	position: relative;
/*	overflow: hidden;*/
}
a {
	color: #505e7e;
	-webkit-transition: all .2s cubic-bezier(.4,0,.2,1);
	transition: all .2s cubic-bezier(.4,0,.2,1);
}
a:hover {
	color: #03a9f4;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.btn {
    background-color: #03a9f4;
    border: medium none;
    color: #FFF;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 25px;
    padding: 10px 45px;
	cursor: pointer;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.15);	
}
.btn:hover, .btn:focus {
	color: #FFF;
    background-color: #cf46e6;
    box-shadow: 2px 4px 20px rgba(39, 40, 43, 0.20);	
}
.btn-link, .btn-link:hover {
	color: #03a9f4;
	font-weight: 600;
}
.btn-inverse {background-color: #03a9f4;}
.btn-inverse:hover, .btn-inverse:focus {background-color: #cf46e6;}
.form-group {
	position: relative;
	margin-bottom: 1.3rem;
}
/*.form-group label, .lt-checkbox label {color: #737477;}*/
.form-control {
	line-height: 1.8;
	border-radius: .15rem;
	transition: 0.2s;
	color: #091e40;
}
.form-control:focus {
	border-color: #03a9f4;
	color: #091e40;
	outline: none;
    box-shadow: none;
}

textarea.form-control {resize: none;}

.lt-checkbox .custom-control {
	width: 100%;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(166, 166, 175, 0.34);
    padding: 35px 10px;
    text-align: center;
    display: block;
    border: none;
    color: #091e40;
    font-size: 15px;
	margin: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border-radius: 0;
}
.custom-control-input:checked~.custom-control-indicator {
    color: #fff;
    background-color: #f76730;
}
.custom-control-input:disabled~.custom-control-description {
	cursor: default;
    opacity: 0.5;
}
.lt-checkbox .custom-control.active {
	color: #495057;
    background-color: #f3f4f5;
    box-shadow: inset 0px 2px 10px rgba(166, 166, 175, 0.2);
}
.lt-checkbox .custom-control-input:checked~.custom-control-indicator {
	background-color: #f04840;
    box-shadow: none;
    border-radius: 50%; 
}
.lt-checkbox .custom-control-indicator {
	top: .25rem;
    left: .25rem;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #00b1fc;
    background-color: #00b1fc;
}
.navbar {
    padding: 1.3rem 1rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.navbar-brand {
    width: 200px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: auto;
}
.navbar li .nav-link {
	color: #091e40;
	position: relative;
}
.navbar li.nav-item {
    margin-left: 1.3rem;
	font-size: 14px;
}
.navbar li.nav-item a:hover, .navbar li.nav-item.active a, .navbar li.nav-item.dropdown.show .nav-link {
	color: #03a9f4;
}
.navbar-nav .dropdown-menu {
    border-radius: 6px;
    box-shadow: 2px 11px 28px rgba(10,10,92,0.2);
	border: none;
	font-size: 14px;
}
.dropdown-item {
	padding: 0.5rem 1.5rem;
}
.dropdown-item:focus, .dropdown-item:hover {
	background: transparent;
}
.carousel-inner {
	min-height: 350px
}
.carousel-indicators {
    margin: -50px auto;
}
.carousel-indicators li {
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #b8bfc7;
    width: 10px;
    height: 10px;
}
.carousel-indicators .active {
    background-color: #03a9f4;
	box-shadow: inset 0px 0px 0 2px #f7f7f7;
}
.navbar-toggler {
	cursor: pointer;
}
.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
	background: #081e40;
	margin: 5px 0;
}
.navbar-toggler:hover .icon-bar, .navbar-toggler:focus .icon-bar {
	background: #03a9f4;
}
.card-footer {
	background-color: transparent;
}
.card {
	box-shadow: 0px 5px 11px 1px rgba(109, 109, 168, 0.25);
	border-radius: 15px;
	overflow: hidden;
	border: none;
}
.card-deck {
    padding: 15px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(250, 250, 250);
}



/*Custom CSS*/
.lt-heroic-title {
	font-size: 2.3rem;
	font-weight: 700;	
	margin-top: 2rem;
}
.highlight {
	color: #03a9f4;
}
.section-title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
	line-height: 1.3;
}
.section-subtitle {
	font-size: 14px;
	text-align: center;
}
.lt-inner-title, .card-title {
	font-weight: 600;
	font-family: 'Open Sans', Georgia, Arial, sans-serif;
}
.lt-section-1 {
	padding-top: 5.5rem;
}
.lt-section-3 {
	background-color: #fafafa;
	border-top: 1px solid rgba(235, 235, 241, 0.5);
}
.lt-section-4 {
    background: linear-gradient(to bottom right, rgba(254, 0, 252, 0.8), rgba(3, 169, 244, 0.8)), url(../images/section-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    padding: 50px 0;
}
.lt-section-4 .section-title {
    color: #FFF;
}
.lt-section-4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    opacity: 1;
    transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -ms-interpolation-mode: nearest-neighbor;
    -ms-animation: backgroundScroll linear 80s infinite;
    -webkit-animation: backgroundScroll linear 80s infinite;
    -moz-animation: backgroundScroll linear 80s infinite;
    animation: backgroundScroll linear 80s infinite;
}
@-webkit-keyframes backgroundScroll {
	0% {transform: scale(1); -ms-transform: scale(1);}
	50% {transform: scale(1.3); -ms-transform: scale(1.3);}
	100% {transform: scale(1); -ms-transform: scale(1);}
}
@keyframes backgroundScroll {
	0% {transform: scale(1); -ms-transform: scale(1);}
	50% {transform: scale(1.3); -ms-transform: scale(1.3);}
	100% {transform: scale(1); -ms-transform: scale(1);}
}

.lt-footer {
	background: #09212d;
	color: #fff;
	font-size: 13px;
	padding: 40px 0;
}
.lt-footer a {
	color: #fff;
	margin-right: 15px;
}
#lt-car-slide img {
	width: 330px;
}
.card-price {
	font-size: 1.5rem;
	font-weight: 600;
}
.lt-form-box {
	padding: 20px 30px;
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0 20px 32px -8px rgba(9, 30, 66, 0.25);
    margin-bottom: 2rem;
	border: none;
}
.lt-query-info {
	font-size: 14px;
}
.lt-query-info a {
    font-weight: 600;
    border-bottom: 1px dotted #90a4ae;
    margin-bottom: 10px;
    display: inline-block;
	
}
.contact-bg {
	background: url(../images/lt-contact-bg.png) no-repeat scroll bottom right;
    background-size: cover;
    height: 350px;
	margin-bottom: 1rem;
}
.services-bg {
	background: url(../images/lt-services-bg.png) no-repeat scroll bottom left;
    background-size: cover;
    height: 280px;
}
.lt-nav-tabs {
	background: #fafafa;
	border-radius: 50px;
}
.lt-nav-tabs .active {
    border-color: #dee2e6 !important;
    border-radius: 50px;
	font-weight: 600;
}
.lt-nav-tabs .nav-link:focus, .lt-nav-tabs .nav-link:hover {
    border-radius: 50px;
}

/*.pulse {*/
/*	position: absolute;*/
/*	width: 5px;*/
/*	height: 5px;*/
/*	border-radius: 50%;*/
/*	background: #cf46e6;*/
/*	animation: pulse 1s infinite;*/
/*	transition: all .5s ease-in-out;*/
/*    -ms-transition: all .5s ease-in-out;	*/
/*}*/
@keyframes pulse {
  0% {
	box-shadow: 0 0 0 0px rgba(207, 70, 230, 0.60);
  }
  100% {
	box-shadow: 0 0 0 20px rgba(207, 70, 230, 0);
  }
}
.navbar li.nav-item a:hover .pulse, .navbar li.nav-item.active a .pulse, .navbar li.nav-item.dropdown.show .nav-link .pulse {
	opacity: 0;
}

.lt-hidden {
display: none;
}
.lt-announce {
    text-align: right;
    font-size: 75%;
    color: #b5980c;
    background: #feffa9;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0px 10px;
    border: 1px solid #eeef89;
    border-radius: 4px;
    cursor: pointer;
}
.lt-announce img {
    width: 16px;
    opacity: .5;
}
@media screen and (max-width: 992px) {
    .lt-announce {display:none;}
}
.lt-home-announce {
    background: #feffa9;
    border: 1px solid #f3efef;
    border-radius: 4px;
}