<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Google Font */
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Oswald:200,300,400,500,600,700');

/*----------------------------
+ Body

+ Page Loader

+ Horizontal Middle Section 

+ Vertical Sidebar Navigation
	- Navigation

+ Home Page Section
	- Box Section

+ Progress Bar

+ Line Seperater

+ Portfolio Section

+ Pricing Table

+ Experience	
	-Timeline 

+ Blog Section	
	

+ Contact Section
	- Text Box Effect
	- Footer Address
	- Footer Social Links
	
----------------------------*/

body{
	
	font-family: 'Lato', sans-serif;
	color:#000;
	height:100%;
	font-size:15px;
	width: 100%;
	background-image: url('../images/right_bg.png'),linear-gradient(to right, #006ab7 50% , #fff 50%); 
	background-repeat: no-repeat, no-repeat;
	background-position: top right,left;
	font-family: 'Lato', sans-serif;
	background-attachment:fixed;

}
html {
  height: 100%;
}
h2{
 font-family: 'Oswald', sans-serif;	
 }

.padding0{
	padding:0px;
}
.margintop50{
	
	margin-top:50px;
}

/* ---------------------------------------------------
   Page Loader
----------------------------------------------------- */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00a9eb;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: #bdbdbd;
	-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 1px solid transparent;
	border-top-color: #006ab7;
	-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background:#fff url('../images/body_right_bg.jpg');
		background-size:cover;
        z-index: 1000;
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }
    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded styles */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }
    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }
    .loaded #loader {
        opacity: 0;

        -webkit-transition: all 0.3s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */

    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
    
        -webkit-transition: all 0.3s 1s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.3s 1s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }

/*-------------------------------
Horizontal Middle Section         
-------------------------------*/


.container-table {
    display: table;
	height:100%;
}
.vertical-center-row {
    display: table-cell;
    vertical-align: middle; 
}
@media only screen and (min-device-width : 320px) and (max-device-width : 767px) {
	.container-table{
		margin-top:100px;
	}
}
/* ---------------------------------------------------
    Navigation Sidebar Style
----------------------------------------------------- */
.nav .open &gt; a,
.nav .open &gt; a:hover,
.nav .open &gt; a:focus {
  background-color: transparent;
}
.navbar {
    padding: 0px 10px;
   color:#fff;
    border: none;
    border-radius: 0;
	right:0px;
	font-size:20px;
    margin-bottom: 40px;
	font-family: 'Oswald', sans-serif;
	position:absolute;
	z-index:999;
	position:fixed;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}
.navbar-default{ 

background-color:transparant!important;
border:0px;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
	margin: 40px 0;
}

.wrapper {
    display: flex;
   }

#sidebar {
    width: 340px;
	font-family: 'Oswald', sans-serif;
    position: fixed;
    top: 70px;
    right: -330px;
	text-align:right;
	background-color:#f5f5f5;
    height: 100vh;
	font-weight:400;
    z-index: 999;
	font-size:18px;
    background: transparant;
    color: #bdbdbd;
    transition: all 0.3s;
    overflow-x: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
#sidebar.active {
   right:0px;
}
#sidebar .sidebar-header {
    padding:0px 20px 10px 15px;
}
#sidebar .sidebar-header img{
	margin:0px auto;
}
#sidebar ul.components {
    padding: 0px 0px 20px 20px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}
#sidebar ul li a {
    padding: 9px 20px 9px 10px;
	color:#000;
    display: block;
}
#sidebar ul li a:hover {
    color: #18BC9C;
    background: transparant;
	text-decoration:none;
}
#sidebar ul li.active &gt; a, a[aria-expanded="true"] {
    color: #00a9eb;
    background: transparant;
}
a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}
ul.CTAs {
    padding: 20px;
}
ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 767px) {
	.navbar-default{
		width:100%;
		background-color:#00a9eb;
		
	}
	#sidebarCollapse{
		background:none!important;
	}
	#sidebarCollapse span{
		background:#fff!important;
	}
}
#sidebarCollapse {
    width: 65px;
    height: 65px;
    background: #f5f5f5;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #555;
    transition: all 0.3s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	-moz-transition: all 0.3s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	-webkit-transition: all 0.3s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	-o-transition: all 0.3s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0s;
}

	#sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }


#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 0 auto;
}
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }

}
/* ---------------------------------------------------
    Home Page Section
----------------------------------------------------- */
.home{
	font-family: 'Oswald', sans-serif;
}
.content {
	margin: 0 auto;
	
}
	
.slogan p{
	color:#fff;
	text-align:center;
}
.a1{
	font-size:120px;
	font-weight:600;
	line-height:100px;
	color:#fff;
}
.a2{
	font-size:35px;
	font-weight:200;
	line-height:50px;
	color:#fff;
}
.a3{
	font-size:60px;
	font-weight:200;
	line-height:70px;
	color:#fff;
}
.a4{
	font-size:60px;
	font-weight:600;
	color:#013238 !important;
	line-height:65px;
}
.a5{
	font-size:40px;
	font-weight:200;
	text-transform:uppercase;
	line-height:50px;
	color:#fff;
}
.box {
	width: 350px;
    height: 350px;
    margin: 20px auto;
    transform: rotate(45deg);
    border: 20px solid transparent;
    border-image: -webkit-linear-gradient(bottom left,#00a9eb 0%,#006ab7 60%, #ffffff 60% , #ffffff 90% ,#f4f3f3 90%, #f4f3f3 100%);
    border-image-slice: 1;
}
.box .inner-box {
-ms-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
background: #dcdee1;
height: 280px;
width: 280px;
position: relative;
overflow: hidden;
margin:15px 0px 0px 15px;
}

.box .inner-box img{
-ms-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
transform: rotate(45deg);
width: 230px;
position: absolute;
}
.rightlogo img{
	 margin:50% auto;
}
.box2{
	position:fixed;
	width:400px;
	max-height: 450px;
	top:22%;
	border: 20px solid transparent;
	border-image: -webkit-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -ms-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -o-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image-slice: 1;
}
.box2 h2{
 font-family: 'Oswald', sans-serif;
color:#fff;
font-weight:400;
font-size: 75px;
text-transform: uppercase;
}

.box4{
	top:40%;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 767px) {
	.a1{
		font-size:50px;
		font-weight:600;
		line-height:50px;
		color:#000;
	}
	.a2{
		font-size:25px;
		font-weight:200;
		line-height:25px;
		color:#000;
	}
	.a3{
		font-size:40px;
		font-weight:200;
		line-height:40px;
		color:#000;
	}
	.a4{
		font-size:20px;
		font-weight:600;
		color:#000 !important;
		line-height:30px;
	}
	.a5{
		font-size:25px;
		font-weight:200;
		text-transform:uppercase;
		line-height:85px;
		color:#000;
	}
	.box{
		
		height:180px;
		width:180px;
	}
	.box .inner-box {
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	background: #dcdee1;
	height: 180px;
	width: 180px;
	position: relative;
	overflow: hidden;
	margin:15px 0px 0px 15px;
	}	
	.box .inner-box img{
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(45deg);
	width: 230px;
	position: absolute;

	}
	.rightlogo img{
		margin:25% auto;
	}

	body{
		background: white;
	}
	.box2{
	position:relative;
	width:100%;
	border: 0px;
	border-image: none;
	border: 0px solid transparent;
	border-image: -webkit-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -o-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -ms-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image-slice: 1;
	
	}
	.box2 h2 {
		font-size: 40px;
		color:#000;
		text-align:center;
		margin:5% auto;
		
	}
	.box3{
	
	margin:20% auto;
	border: 20px solid transparent;
	border-image: -webkit-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -ms-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: -o-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image: linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image-slice: 1;
	
	}
	/********Margin*******/
	.margin75 {
	margin-top:75px;
	}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 991px) {
	.box2 h2{
	font-size: 60px;	
		
	}
	.box2{
	position:fixed;
	width:250px;
	height: 50%;
	padding:0px;
	top:30%;
	bottom:20%;
	border: 20px solid transparent;
	border-image: -webkit-linear-gradient(bottom right,#006ab7 0%,#006ab7 35%,#00a9eb 35%,#00a9eb 100%);
	border-image-slice: 1;
}
.box2 h2{
 font-family: 'Oswald', sans-serif;
color:#fff;
font-weight:400;
font-size: 60px;
text-transform: uppercase;
}
}

.box2 img{
	width:100%;
	height:auto;
}
@media screen and (min-width: 1680px) {
    .box2{ 
        top:30%;
    }
	.box4{
		top:40%;
	}
}


/* ---------------------------------------------------
    About Us Section
----------------------------------------------------- */
.about_us h1{
	font-family: 'Oswald', sans-serif;
	font-size:44px;
	color:#000;
}
.grey{
	color: #d5d5d5;
	
	}
.thintxt{
	font-weight:300;
}
.cyantxt{
	color:#00a9eb;
	font-weight:300;
}
.detail{
	line-height:26px;
	
}
h3{
	font-family: 'Oswald', sans-serif;
	font-size:24px;
	font-weight:200px;
	color:#000;	
	margin-bottom:30px;
}

/* ---------------------------------------------------
    Progress Bar Section
----------------------------------------------------- */
.progress-bar{
	background-color:#00a9eb;
}
.progress-title{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin: 0 0 10px;
	font-family: 'Lato', sans-serif;	
}
.progress{
    height: 8px;
    background: #006ab7;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: visible;
}
.progress .progress-bar{
    box-shadow: none;
    position: relative;
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s;
}
.progress .progress-bar:after{
    content: "";
    display: block;
    border: 15px solid transparent;
    border-bottom: 21px solid transparent;
    position: absolute;
    top: -26px;
    right: -12px;
}
.progress .progress-value{
    font-size: 15px;
    font-weight: bold;
    color: #000;
    position: absolute;
    top: -30px;
    right: 0;
}
.value0{
	width:100%;
}
.value1,.value2{
	width:90%;
}
.value3{
	width:85%;
}
.value4{
	width:80%;
}

@-webkit-keyframes animate-positive{
    0% { width: 0; }
}
@keyframes animate-positive{
    0% { width: 0; }
}

/* ---------------------------------------------------
    Line Seprator
----------------------------------------------------- */
hr.star-light,
hr.star-primary {
  padding: 0;
  border: none;
  border-top: solid 1px;
  text-align: center;
  max-width: 250px;
  margin: 25px auto 30px;
}
hr.star-light:after,
hr.star-primary:after {
  content: "";
height: 13px;
width: 13px;
transform: rotate(45deg);
background-color: red;
font-family: FontAwesome;
display: inline-block;
position: relative;
top: -12px;
font-size: 10px;
padding: 0 0.25em;

}
hr.star-light {
  border-color: #dedee2;
  height:1px;
  margin:20px auto;
}
hr.star-light:after {
  background-color: #18BC9C;
  color: white;
}
.homeBox {
	position: relative;
	float: left;
	display: block;
}
.homeBox .one_fourth {
	text-align: center;
	
	color:#8e8e8e;
	width:100%;
	overflow: hidden;
	background-color:transparant;
	border: 1px solid #E1E1E1;
	-moz-box-shadow: 0px 1px 0px #ecebeb;
	-webkit-box-shadow: 0px 1px 0px #ecebeb;
	height: 215px;
	margin:0px 10px 30px 0px;	
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;
}
.one_fourth,{
	position: relative;
	margin: 0;
	margin-right: 3.8%;
	float: left;
}
.homeBox .one_fourth div, .homeBox .last div {
	padding: 10px;
}
.homeBox .one_fourth:hover{
	
	border: 4px solid transparent;
	 -moz-transition:all 0.2s ease;
	-ms-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
	transition:all 0.2s ease;	
	border-image: -webkit-linear-gradient(-135deg, #00a9eb 0%, #00a9eb 10%,#fff 10%, #fff 40%, #00a9eb 40%, #00a9eb 60%,#fff 60%, #fff 90%, #00a9eb 90%, #00a9eb 100%);
	border-image-slice: 1;
	cursor: pointer;
}
.homeBox .one_fourth i{
	color:cbcbcb !important;
}
.homeBox .one_fourth .boxImage {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.homeBox .one_fourth:hover .boxImage {
	position: relative;
	-webkit-animation: moveFromTop 350ms ease;
	-moz-animation: moveFromTop 350ms ease;
	-ms-animation: moveFromTop 350ms ease;
}
.homeBox .one_fourth:hover i{
	color:#11ada4 ;
}
.homeBox .one_fourth h2 {
	color: #000;
	margin: 0 0 10px 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	font-size:20px;
}
.homeBox .one_fourth:hover h2 {
	position: relative;
	color:#000;
	-webkit-animation: moveFromTop 500ms ease;
	-moz-animation: moveFromTop 500ms ease;
	-ms-animation: moveFromTop 500ms ease;
}
.homeBox .one_fourth .boxDescription {
	color: #000;
	margin: 0 0 10px 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.homeBox .one_fourth:hover .boxDescription {
	position: relative;
	color:#7c7c7c;
	-webkit-animation: moveFromBottom 500ms ease-in-out;
	-moz-animation: moveFromBottom 500ms ease-in-out;
	-ms-animation: moveFromBottom 500ms ease-in-out;
}
@-webkit-keyframes moveFromTop {
    from {
        top: -600px;
    }
    to {
      	top: auto;
    }
}
@-moz-keyframes moveFromTop {
    from {
        -moz-transform: translateY(-600%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        -ms-transform: translateY(-600%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        bottom: -400px;
    }
    to {
       	top: auto;
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(400%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(400%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}

/* ---------------------------------------------------
   Portfolio Section
----------------------------------------------------- */

.filter-section {
	padding-top:00px;
}
.filter-container {
    text-align:center;
    padding:0px
}
ul.filter &gt; li &gt; a {
    font-family: 'Lato', sans-serif;
	font-size:16px;
    color:#000;
	padding:5px 15px;
    line-height:40px
}
ul.filter &gt; li &gt; a:hover,ul.filter &gt; li &gt; a:focus {
    text-decoration:none;
	font-family: 'Lato', sans-serif;
	font-size:16px;
    color:#fff;
	background-color:black;
    outline:none
}
ul.filter &gt; li.active a {
    color:#fff;
	background-color:#000;
}
ul.filter &gt; li span {
    color:#ddd;
    font-size:20px;
    display:inline-block;
    margin:0 5px
}
.filter-section .filter-container .filter &gt; li {
    padding:0;
    margin:0;
}
.filter-section h1 {
    text-align:center
}
/* the color of the transparent overlay border */

.portfolio-section.port-col figure .overlay-background {
    background-color:#000;
    background-color:rgba(0,0,0,0.6);
}

/* portfolio images */
.portfolio-section figure {
    float:left;
    width:100%;
    position:relative
}
.portfolio-section figure img {
    width:100%;
    height:auto
}
/* project title under image */
.portfolio-section .article-title {
    text-align:center;
    float:left;
    width:100%;
    font-size:18px;
    line-height:24px;
    padding:10px 0 30px 0;
}
.portfolio-section .article-title a {
    color:#aaa
}
/* transparent overlay */
.portfolio-section figure:hover .overlay {
    opacity:1;
    visibility:visible
}
.portfolio-section figure:hover .overlay-background {
    opacity:.8;
    visibility:visible
}
.portfolio-section figure .overlay-background {
    z-index:1;
    -webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    width:100%;
    height:100%
}
.portfolio-section figure .overlay-background .inner {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    margin:0px;
   background: -webkit-linear-gradient(-135deg, #00a9eb 50%, #006ab7 50%); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(-135deg, #00a9eb 50%, #006ab7 50%); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(-135deg, #00a9eb 50%, #006ab7 50%); /* For Firefox 3.6 to 15 */
  background: linear-gradient(-135deg, #00a9eb 50%, #006ab7 50%); /* Standard syntax */
}
.portfolio-section figure .overlay {
    z-index:2;
	color:#fff;
	text-align:center;
    transition:all .2s ease-in-out;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    width:100%;
    height:100%
}
.portfolio-section figure .inner-overlay {
    display:table;
	top:45%;
	position:relative;
    width:100%;
    height:100%;
	font-size:20px;
	font-family: 'Oswald', sans-serif;
}
.portfolio-section figure .inner-overlay-content {
    display:table-cell;
    vertical-align:middle;
    width:100%;
    padding:20px 40px
}

.portfolio-section figure .inner-overlay-content.with-icons {
    text-align:center
}
/* icons inside overlay */
.portfolio-section figure .inner-overlay-content.with-icons a {
    width:40px;
    height:40px;
    line-height:42px;
    display:inline-block;
    margin:0 10px;
    text-decoration:none;
    font-size:20px;
	background:rgba(0,0,0,0.9);
    color:#fff;
    border-radius:0
}
/* skew image on hover */ 

.isotopeSelector img {
    -webkit-transition:all .4s ease;
    -moz-transition:all .4s ease;
    -ms-transition:all .4s ease;
    -o-transition:all .4s ease;
    transition:all .4s ease
}
.isotopeSelector:hover img {
    -moz-transform:scale(1.5) rotate(2deg);
    -webkit-transform:scale(1.5) rotate(2deg);
    -o-transform:scale(1.5) rotate(2deg);
    -ms-transform:scale(1.5) rotate(2deg);
    transform:scale(1.5) rotate(2deg);
    -webkit-transition:all .8s ease;
    -moz-transition:all .8s ease;
    -ms-transition:all .8s ease;
    -o-transition:all .8s ease;
    transition:all .8s ease
}
.isotopeSelector figure {
    overflow:hidden
}

.isotopeSelector figure {
    box-shadow:0 0 2px rgba(0,0,0,0.2)
}
.demo-colored-wrap {
	background:#ecf0f1;
}
/* ---------------------------------------------------
    Experience Section Timeline
----------------------------------------------------- */

.timeline {
  position: relative;
}
.timeline::before {
  content: '';
  background: #e7e7e9;
  width: 2px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-item {
  width: 100%;
  margin-bottom:0px;
}
.timeline-item:nth-child(even) .timeline-content {
  float: right;
 }
.timeline-item:nth-child(even) .timeline-content .date {
  text-align:left
}
.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 30px;
  left: -15px;
 }
.timeline-item::after {
  content: '';
  display: block;
  clear: both;
}
.timeline-content {
  position: relative;
  width: 45%;
  padding: 0px;
  border-radius: 4px;
}

.timeline-data{
	border: 1px solid #E1E1E1;
	padding:5px 10px;
}
.timeline-data h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #000;
    margin: 10px 0px;
    font-weight: 500;
}


.timeline-data p{
font-family: 'Lato', sans-serif;	
margin-bottom:5px;
line-height:26px;
}
.timeline-content::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 30px;
  right: -15px;
 }

.timeline-img {
  width: 10px;
  height: 10px;
  background: #00a9eb;
  position: absolute;
  left: 52%;
  transform:rotate(45deg);
  margin-top: 25px;
  margin-left: -15px;
}
.timeline-card {
  padding: 0 !important;
}
.timeline-card p {
  padding: 0 20px;
}
.timeline-card a {
  margin-left: 20px;
}
.timeline .timeline-content h2 {
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    color: #979797;
    font-weight: 400;
    margin: 5px 0px;
}

.timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}
.timeline-heading blockquote{
	padding:0px 5px;
	margin:0px;
}
.timeline-img-header h2 {
  color: #000;
  position: absolute;
  bottom: 5px;
  font-size:20px;
  left: 20px;
  text-transform:none;
}
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }
  .timeline .timeline-img {
    left: 50px;
  }
  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
 }
.timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    
  }
}

/* ---------------------------------------------------
    Blog Section
----------------------------------------------------- */
.blog-detail .timeline-heading p {
	font-size:19px;
	font-family: 'Oswald', sans-serif;
	color:#000;
	padding:0px; 
	border-bottom:0px; 
}
.blog-detail cite{
	color:#00a9eb;
	font-size:16px;
}
blockquote footer::before, blockquote small::before, blockquote .small::before {
	content:'';
}
.date {
	font-family: 'Oswald', sans-serif;
	font-size:20px;
	display: inline-block;
	color: #00a9eb;
	padding:5px;
	right:0px;
	width:100%;
	text-align:right;
	font-weight:400;
}
blockquote footer, blockquote small, blockquote .small {
	color:#000;
}

/* ---------------------------------------------------
    Pricing Table
----------------------------------------------------- */
.columns {
    margin-bottom:20px;
    cursor:pointer;
}
.columns:hover .header { 
	background-color:#00a9eb; 
	color:#fff;
}
.columns:hover .button{ 
	background-color:red;
}
.columns:hover .grey 
{
	font-size:30px; 
	color:#fff; 
	background-color:#006ab7; 
	font-family: 'Oswald', sans-serif; 
}
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}
.price:hover {
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.price div{
	float:left;
}
.price .header {
    background-color: #ececec;
    color: #000;
	font-family: 'Oswald', sans-serif;
    font-size: 23px;
    transition: all .2s ease-in-out;
	width:33%;
	height:150px;
	position:relative;	
}
.price .grey{
	width:33%;
	height:150px;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 1200px) {
	.price .header{
		width:100%;
		height:75px;
	}
	.price .grey{
	width:100%;
}
}
.price .headerhover{
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.price .header p{
	position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%); 
}
.price li {
    border-bottom: 1px solid #eee;
    padding:6px;
    text-align: center;
	display:inline-block;
}
.price ul{
	margin:0px;
	padding:0px;
}
.highlight { 
	transition: 0.3s;
	display:block !important;
}
.highlight:hover {
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
	color:#000;
}

.price .grey {
    background-color: #ececec;
    font-size: 20px;
    transition: all .2s ease-in-out;
	float:right;
	color:#000;
	height:150px;
	font-family: 'Oswald', sans-serif;
	position:relative;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {
	.price .grey {
		height:75px;
	}
}
.price .grey  p{
	position: absolute;
    top: 50%; 
	left: 50%;  
	transform: translate(-50%,-50%);
	font-size:25px;
}
.price .grey  p span{
	display:block;
	font-size:22px;
	font-weight:300;
	
	text-align:center;
}
.price .grey:hover {
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
}
.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    transition: all .2s ease-in-out;
}
.button:hover {
    color: #ffffff;
    text-decoration: none;
}
@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}
.outerDiv {
    display: inline-flex;  
    height: 400px;
    background-color: red;
    color: white;
}
.innerDiv {
    margin: auto 5px;   
    background-color: green;   
}

/* ---------------------------------------------------
    Experience Section
----------------------------------------------------- */
.timeline &gt; li:before,
.timeline &gt; li:after {
	content: " ";
	display: table;
}

.timeline &gt; li:after {
	clear: both;
}

.timeline &gt; li:before,
.timeline &gt; li:after {
	content: " ";
	display: table;
}

.timeline &gt; li:after {
	clear: both;
}

.timeline &gt; li &gt; .timeline-panel {
	width: 85%;
	float: right;
	border: 1px solid #d4d4d4;
	border-radius: 2px;
	padding: 0px;
	position: relative;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline-panel img{
	width:100%;
}
.timeline-panel .blog-detail{
	padding:10px;
}

.timeline &gt; li &gt; .timeline-badge {
   color: #fff;
	width: 40px;
	height: 40px;
	line-height: 50px;
	font-size: 1.4em;
	text-align: center;
	position: absolute;
	top: 16px;
	left: 5%;
	margin-left: -25px;
	background-color: #00a9eb;
	z-index: 100;
	transform: rotate(45deg);
	
}
.timeline &gt; li &gt; .timeline-badge2 {
	color: #000;
	width: 40px;
	height: 40px;
	line-height: 50px;
	font-size: 17px;
	font-weight:500;
	text-align: center;
	position: absolute;
	top: 50px;
	left: 5%;
	margin-left: -25px;
	background-color: #fff;
	z-index: 99;
	transform:rotate(45deg);
	border:1px solid #efefef;
   
}
.timeline-badge span{
	transform:rotate(-45deg);
	position: absolute;
	text-align: center;
	bottom: -12%;
	left: 24%;

}
.timeline-badge2 span{
	transform:rotate(-45deg);
	position: absolute;
	text-align: center;
	bottom: -12%;
	left: 24%;

}

.timeline &gt; li.timeline-inverted &gt; .timeline-panel {
	float: right;
}

.timeline &gt; li.timeline-inverted &gt; .timeline-panel:before {
	border-left-width: 0;
	border-right-width: 15px;
	left: -15px;
	right: auto;
}

.timeline &gt; li.timeline-inverted &gt; .timeline-panel:after {
	border-left-width: 0;
	border-right-width: 14px;
	left: -14px;
	right: auto;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body &gt; p,
.timeline-body &gt; ul {
    margin-bottom: 0;
}

    .timeline-body &gt; p + p {
        margin-top: 5px;
    }

@media (max-width: 767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline &gt; li &gt; .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }

    ul.timeline &gt; li &gt; .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }
	ul.timeline &gt; li &gt; .timeline-badge2 {
        left: 15px;
        margin-left: 0;
        top: 55px;
    }

    ul.timeline &gt; li &gt; .timeline-panel {
        float: right;
    }

        ul.timeline &gt; li &gt; .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }

        ul.timeline &gt; li &gt; .timeline-panel:after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }
}

/* ---------------------------------------------------
    Blog Section
----------------------------------------------------- */
.blog .timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.blog .timeline:before {
	top: 0;
	bottom: 0;
	position: absolute;
	content: " ";
	width: 0px;
	background-color: #eeeeee;
	left: 4%;
	margin-left: -1.5px;
    }

.blog .timeline &gt; li {
	margin-bottom: 20px;
	position: relative;
    }
.blog-detail p{
	border-bottom:1px solid #dedee2;
	padding:10px 0px;
}
.blog-detail i{
	color:#00a9eb;
	font-size:18px;
	
}
.blog-detail span{
	margin:0px 20px 0px 5px;
}
/* ---------------------------------------------------
    Contact Section
----------------------------------------------------- */
.contact_me{
	background:url('../images/contact_bg.jpg') no-repeat;
	background-size:cover;
}

/************************TextBox Effect**********************/
.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0.25em 0px;
	width:100%;
	width: calc(100% - 2em);
	vertical-align: top;
}
.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: 400;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}
.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #696969;
	font-weight: bold;
	font-size: 70.25%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}
.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}
.icon {
	color: #ddd;
	font-size: 150%;
}

/*Nao Effect Style */
.input--nao {
	overflow: hidden;
	padding-top: 1em;
}

.input__field--nao {
	padding: 0.9em 0em 0.25em;
	width: 100%;
	background: transparent;
	color: #8e8e8e;
	font-size:15px;
}
.input__label--nao {
	position: absolute;
	top: 0.20em;
	font-size:15px;
	left: 0;
	color:#000;
	display: block;
	width: 100%;
	text-align: left;
	padding: 0em;
	pointer-events: none;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: -webkit-transform 0.2s 0.15s, color 1s;
	transition: transform 0.2s 0.15s, color 1s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.graphic--nao {
	stroke: #d8d8d8;
	pointer-events: none;
	-webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
	transition: transform 0.7s, stroke 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
} 
.input__field--nao:focus + .input__label--nao,
.input--filled .input__label--nao {
	color: #00a9eb;
	
	-webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
	transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}
.input__field--nao:focus ~ .graphic--nao,
.input--filled .graphic--nao {
	stroke: #333;
	-webkit-transform: translate3d(-66.6%, 0, 0);
	transform: translate3d(-66.6%, 0, 0);
}
.contact_me .btn{
	background-color:white;
	font-weight:400;
	margin:15px auto;
	color:#00a9eb;
	text-align:center;
	border: 3px solid transparent;
	border-image: -webkit-linear-gradient(-135deg,#006ab7 0%,#006ab7 50%,#00a9eb 50%,#00a9eb 100%);
	border-image-slice: 1;
}
.btn-default:active:focus{
	background-color:#fff;
}
.contact_me .form-group{
	margin-bottom:0px;
}
.bottomlogo img{
	text-align:center;
	margin:25px auto;
}
.contact_detail{
	text-align:center;
	color:#000;
	font-weight:500;
	line-height:25px;
	margin:15px 0px;
}
.contactus_box
{
	padding:10px 0px;
}
.contactus_box .contact_section{
	border-bottom:1px solid rgba(255,255,255,0.5);
	padding:2px 0px;
}
.contact_section:last-child {
    border-bottom:0px;
}
.contactus_box i{
	font-size:25px;
	color:#00a9eb;
	float:left;
}
.contact_section p{
	color:#000;
	margin-bottom:5px;
}
.social-network a i {
    color: #000;
    font-size: 20px;
    margin: 10px 30px 10px 0px;
}
.social-network a i:hover {
    color: #00a9eb;
}
.visual-form-builder fieldset { background: none !important}</pre></body></html>