<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/************************************************
Css Table Of Content
-----------------------
01. Base CSS
02. Heading tag Typogrpahy
03. Global Style
04. Scroll Top CSS
05. PreLoader CSS
*************************************************/


/*--------------01. Start of Base CSS------------------*/
.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
a:focus { outline: 0 solid }
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}
body {
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
a:hover { text-decoration: none }
ul {margin: 0; padding: 0; list-style: none;}
/*--------------01. End of Base CSS------------------*/

/*--------------02. Start of Heading tag Typogrpahy CSS------------------*/
@import url('https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
h2 {font-size: 35px;}
h3 {font-size: 24px;}
h4 {font-size: 20px;}
/*--------------02. End of Heading tag Typogrpahy CSS------------------*/

/*--------------03. Start of Global Style CSS------------------*/
.section-padding {padding: 100px 0;}
.section-title {margin-bottom: 60px;}
.overlay {
	position: relative;
	height: 100%;
	width: 100%;
	background: #ddd;
    background-size: cover;
    background-position: center;
	z-index: 1;
}
.overlay::after {
	background: #393eb1;
    background: -moz-linear-gradient(45deg, #393eb1 0%, #393eb1 42%, #305eba 61%, #287fc4 100%);
    background: -webkit-linear-gradient(45deg, #393eb1 0%,#393eb1 42%,#305eba 61%,#287fc4 100%);
    background: linear-gradient(45deg, #393eb1 0%,#393eb1 42%,#305eba 61%,#287fc4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#393eb1', endColorstr='#287fc4',GradientType=1 );
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	opacity: .8;
	z-index: -1;
}

.radius-100 {border-radius: 100%;}
.radius-30 {border-radius: 30px;}

.margin-top-50 {margin-top: 50px;}
.margin-bottom-0 {margin-bottom: 0;}

.pt-10 {padding-top: 10px;}

.overflow-hidden {overflow: hidden;}
.overflow-x-hidden {overflow-x: hidden;}

.transition-4s {transition: all .4s ease;}
/*--------------03. End of Global Style CSS------------------*/

/*--------------04. Start of Scroll Top CSS------------------*/
.scrollup {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 56px;
    right: 30px;
    text-indent: -9999px;
    background: url(../img/scroll-icon.png) no-repeat;
    background-color: #3D53B3;
    background-position: center;
    z-index: 999;
}
/*--------------04. End of Scroll Top CSS------------------*/

/*--------------05. Start of PreLoader CSS------------------*/
.app-site-preloader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #dddddd;
    z-index: 9999;
}
.app-site-preloader-wrap .spinner2 {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    margin-left: -20px;
    margin-right: -20px;
    background: transparent;
}


/*----------Jquery preloader css for body----------*/
.spinner2 {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner2 &gt; div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner2 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner2 .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner2 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner2 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/*--------------05. End of PreLoader CSS------------------*/
</pre></body></html>