
/*
====================================================

* 	[Master Stylesheet]
	
	Theme Name :  
	Version    :  
	Author     :  
	Author URI :  

====================================================

	TOC
	
	1. PRIMARY STYLES
	2. COMMONS FOR PAGE DESIGN
		JQUERY LIGHT BOX
	3. LEFT SECTION
	4. RIGHT SECTION

====================================================

/* ---------------------------------
1. PRIMARY STYLES
--------------------------------- */

html{ font-size: 100%; height: 100%; width: 100%; overflow-x: hidden; margin: 0px;  padding: 0px; touch-action: manipulation; }


body{ font-size: 16px; font-family: 'Open Sans', sans-serif; width: 100%; height: 100%; margin: 0; font-weight: 400;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; word-wrap: break-word; overflow-x: hidden; 
	color: #333; 
	background-size:cover;
	height:100%;
}

.logo {
	max-width: 300px;
	margin-bottom:60px;
}

h1, h2, h3, h4, h5, h6, p, a, ul, span, li, img, input, button{
	margin: 0;
	padding: 0;
	color: #2D2E8F
}

h1,h2,h3,h4,h5,h6{ line-height: 1.5; font-weight: inherit; }



p{ line-height: 1.6; font-size: 1.05em; font-weight: 400; color: #222; margin-bottom: 1em }

h1 {
	font-size: 2em;
	line-height: 1.2;
	margin-bottom: 1em !important;
	text-transform:uppercase
}
h2{ 
font-size: 1.6em;
line-height: 1.6;
margin-bottom:20px;
 }
h3{ font-size: 1.4em; }
h4{ font-size: 1.5em; }
h5{ font-size: 1.2em; }
h6{ font-size: .9em; letter-spacing: 1px; }

a,
button {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	transition: all .3s;
	line-height: 1;
	color: #6abd46;
}

a:focus, a:active, a:hover,
button:focus, button:active, button:hover,
a b.light-color:hover {
	text-decoration: none;
	color: #2D2E8F;
}

b{ font-weight: 500; }

img{ width: 100%; }

li{ list-style: none; display: inline-block; }

span{ display: inline-block; }

button{ outline: 0; border: 0; background: none; cursor: pointer; }

b.light-color{ color: #444; }

.icon{ font-size: 1.1em; display: inline-block; line-height: inherit; }

[class^="icon-"]:before, [class*=" icon-"]:before{ line-height: inherit; }



/* ---------------------------------
2. COMMONS FOR PAGE DESIGN
--------------------------------- */

.center-text{ text-align: center; } 

.display-table{ display: table; height: 100%; width: 100%; }

.display-table-cell{ display: table-cell; vertical-align: middle; }



::-webkit-input-placeholder { font-size: .9em; letter-spacing: 1px; }

::-moz-placeholder { font-size: .9em; letter-spacing: 1px; }

:-ms-input-placeholder { font-size: .9em; letter-spacing: 1px; }

:-moz-placeholder { font-size: .9em; letter-spacing: 1px; }



.position-static{ position: static; }


.main-area{ 
	position: relative; 
display:flex;
align-items: center;
justify-content:center;
z-index: 1000;

}


/* ---------------------------------
3. LEFT SECTION
--------------------------------- */

.flex-half-height {
	flex:1 1 0;
	max-width: 960px;
	margin: 2% 4%;
	padding: 4%;
	background: #fff; 
	background-size:contain;
	text-align:center;
	color: #000;
	border-radius: 60px;
	-webkit-box-shadow: 0px 0px 10px 0px #e1e1e1;
	box-shadow: 0px 0px 10px 0px #e1e1e1;
}

.main-content .title{ margin-bottom: 15px; }

.main-content .post-desc{ color: #999; }



.left-section .footer-icons > li > a:hover > i{ border: 1px solid; }

.footer-icons > li > a > i{ color: #fff0ff; border-color: #2A61D6; }


@keyframes move_wave {
	0% {
		transform: translateX(0) translateZ(0) scaleY(1)
	}

	50% {
		transform: translateX(-25%) translateZ(0) scaleY(0.55)
	}

	100% {
		transform: translateX(-50%) translateZ(0) scaleY(1)
	}
}

.waveWrapper {
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.waveWrapperInner {
	position: absolute;
	width: 100%;
	overflow: hidden;
	height: 100%;
	bottom: -1px;
	background: #fff;
}

.bgTop {
	z-index: 15;
	opacity: 0.5;
}

.bgMiddle {
	z-index: 10;
	opacity: 0.75;
}

.bgBottom {
	z-index: 5;
}

.wave {
	position: absolute;
	left: 0;
	width: 200%;
	height: 100%;
	background-repeat: repeat no-repeat;
	background-position: 0 bottom;
	transform-origin: center bottom;
}

.waveTop {
	background-size: 50% 100px;
}

.waveAnimation .waveTop {
	animation: move-wave 3s;
	-webkit-animation: move-wave 3s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.waveMiddle {
	background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
	animation: move_wave 10s linear infinite;
}

.waveBottom {
	background-size: 50% 100px;
}

.waveAnimation .waveBottom {
	animation: move_wave 15s linear infinite;
}


.container {
max-width: 100% !important;
}

.container .row {
display:flex;
justify-content: space-around;
}

.container .row .col {
	flex: 50%;
	padding: 2%;
	
}


@media (max-width: 768px) {
.container .row {
flex-direction: column-reverse
}

.container .row .col {
	flex:1 100%;
}
}


.contact {
margin: 30px;
font-size: 120%
}