/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/*end reset*/
body {
    font-family: 'Open Sans', sans-serif;
	background:url(../images/bann.jpg) no-repeat 0px 0px;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
}
/*--header--*/


/* Header */
h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 300;
    margin: 40px 0;
    color: #fff;
    letter-spacing: 9px;
    text-shadow: 4px 4px 3px #000;
    word-spacing: 4px;
    font-weight: 500;
    font-family: 'Josefin Slab', serif;
}
form {
    margin: 0 auto;
    width: 100%;
}

/*-- checkbox --*/
.anim {
    position: relative;
    display: block;
    margin-top: .5em;
}
label.anim span, label.anim a {
    color: #fff;
    font-size: 13px;
    display: inline;
    letter-spacing: 2px;
    text-transform: capitalize;
}
label.anim  a {
    display: inline-block;
	text-decoration:none;
	float:right;
	margin-top:4px;
}

input.checkbox {
    background:#fff;
	cursor: pointer;
    width: 1.2em;
    height: 1.2em;
	margin: 0 6px 0 0!important;
}
input.checkbox:before {
	content: "";
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	background: inherit;
	cursor: pointer;
}
input.checkbox:after {
    content: "";
    transition: .4s ease-in-out;
    position: absolute;
    top: 1px;
    left: 0px;
    z-index: 1;
    width: 1.1em;
    height: 1.1em;
    /* margin-top: 4px; */
    border: 1px solid #00c6d7;
}
input.checkbox:checked:after {
	transform: rotate(-45deg);
	height: .5rem;
	border-color: #00c6d7;
	border-top-color: transparent;
	border-right-color: transparent;
}
.anim input.checkbox:checked:after {
	transform: rotate(-45deg);
	height: .5rem;
	border-color: transparent;
	border-right-color: transparent;
	animation: .4s rippling .4s ease;
	animation-fill-mode: forwards;
}
@keyframes rippling {
	50% {
		border-left-color: #d24747;
	}
	100% {
		border-bottom-color: #00c6d7;
		border-left-color: #00c6d7;
	}
} 
/*-- //checkbox --*/ 

/*--copy-right-starts-here--*/
.footer p {
    margin: 0 auto;
    text-align: center;
    margin: 8em 0;
    font-size: 14px;
    color: #808080;
    letter-spacing: 2px;
    text-transform: none;
}
/*--copy-right-ends-here--*/

/*--placeholder-color--*/
::-webkit-input-placeholder{
	color:#fff;
}

:-moz-placeholder { /* Firefox 18- */
   color: #fff; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #fff;  
}

:-ms-input-placeholder {  
   color: #fff;  
}
/*--//placeholder-color--*/

/*------- RADIO BUTTON ------*/
/* The container */
.containerRB {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	color: gray;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

	/* Hide the browser's default radio button */
	.containerRB input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
	}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containerRB:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerRB input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.containerRB input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.containerRB .checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/*--- END OF RADIO BUTTON ---*/

/*--- Responsive Code ---*/
@media screen and (max-width: 1920px) {
	h1 {
		margin: 150px 0 100px;
		font-size: 55px;
	}
	.copyright p {
		margin: 50px 0px 150px;
	}
}
@media screen and (max-width: 1680px) {
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 82.6%;
	}
	h1 {
		margin: 130px 0 70px;
	}
}
@media screen and (max-width: 1600px) {
	h1 {
		margin: 2em 0 1.5em;
	}
	.copyright p {
		margin: 50px 0px;
	}
	.icon-w3 {
		right: 0px;
		bottom: 0;
		width: 53px;
		height: 50px;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 81.8%;
	}
	.footer p {
		margin: 4em 0em;
	}
	h1 {
		font-size: 50px;
	}
}
@media screen and (max-width: 1440px) {
	.main-w3layouts-agileinfo {
		width: 33%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 81.5%;
	}
}
@media screen and (max-width: 1366px) {
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 80.8%;
	}
	h1 {
		margin: 1.7em 0 1em;
		font-size: 50px;
	}
}
@media screen and (max-width: 1280px) {
	.main-w3layouts-agileinfo {
		width: 36%;
	}
	.footer p {
		margin: 5em 0em;
	}
}
@media screen and (max-width: 1080px) {
	.main-w3layouts-agileinfo {
		width: 42%;
	}
	h1 {
		margin: 82px 0 0px;
	}
	.footer p {
		margin: 3em 0 4em;
	}
}
@media screen and (max-width: 1050px) {
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 83.5%;
	}
}
@media screen and (max-width: 1024px) {
	.main-w3layouts-agileinfo {
		width: 45%;
	}
	.footer p {
		margin: 4em 0em;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 80.8%;
	}
	h1 {
		margin: 1.8em 0 0.8em;
	}
	.submit-agileits input[type="submit"] {
		padding: 11px 90px;
	}
}
@media screen and (max-width: 991px) {
	h1 {
		margin: 1.5em 0 0.7em;
		font-size: 46px;
	}
	.footer p {
		margin: 3em 0em;
	}
	.main-w3layouts-agileinfo {
		padding: 3em 2em;
	}
	.wthree-form h2 {
		font-size: 18px;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 80.1%;
	}
}
@media screen and (max-width: 900px) {
	.main-w3layouts-agileinfo {
		width: 50%;
	}
}
@media screen and (max-width: 800px) {
	.main-w3layouts-agileinfo {
		width: 55%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 79.8%;
	}
}
@media screen and (max-width: 768px) {
	.main-w3layouts-agileinfo {
		width: 58%;
	}
	h1 {
		margin: 2.5em 0 1em;
	}
	.footer p {
		margin: 5em 0em;
	}
	label.anim a {
		margin-top: 3px;
	}
}
@media screen and (max-width: 767px) {
	h1 {
		margin: 1.2em 0 0.7em;
	}
	.footer p {
		margin: 3em 0em;
	}
}
@media screen and (max-width: 736px) {
	.main-w3layouts-agileinfo {
		width: 60%;
	}
	h1 {
		font-size: 42px;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 79.7%;
	}
	.footer p {
		margin: 2.3em 0em;
	}
}
@media screen and (max-width: 667px) {
	.main-w3layouts-agileinfo {
		width: 68%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		padding: 12px 60px 12px 15px;
		font-size: 14px;
		width: 82.9%;
	}
	.icon-w3 {
		width: 45px;
		height: 43px;
	}
	.icon-w3 i {
		font-size: 18px;
		line-height: 44px;
	}
	.footer p {
		margin: 2.7em 0em;
	}
}
@media screen and (max-width: 640px) {
	.main-w3layouts-agileinfo {
		width: 70%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 82.8%;
	}
}
@media screen and (max-width: 600px) {
	.main-w3layouts-agileinfo {
		width: 73%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 82.5%;
	}
	.footer p {
		margin: 3em 0em;
		font-size: 13px;
	}
}
@media screen and (max-width: 568px) {
	.main-w3layouts-agileinfo {
		width: 80%;
	}
	h1 {
		font-size: 38px;
		letter-spacing: 8px;
	}
	.footer p {
		margin: 2.2em 1em 2em;
		line-height: 28px;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 82.5%;
	}
}
@media screen and (max-width: 480px) {
	.main-w3layouts-agileinfo {
		width: 80%;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 80%;
	}
	h1 {
		letter-spacing: 5px;
	}
	.wthree-form h2 {
		font-size: 16px;
	}
	.footer p {
		margin: 2.2em 2em 2em;
	}
}
@media screen and (max-width: 440px) {
	h1 {
		letter-spacing: 4px;
		font-size: 36px;
		margin: 1.4em 0 0.9em;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 78%;
	}
	.main-w3layouts-agileinfo {
		padding: 2.5em 2em;
	}
}
@media screen and (max-width: 414px) {
	h1 {
		font-size: 35px;
	}
	.form-sub-w3 input[type="email"], input[type="password"] {
		width: 77%;
	}
	.footer p {
		margin: 3.2em 2em;
	}
}
@media screen and (max-width: 384px) {
	.form-sub-w3 input[type="email"], .form-sub-w3 input[type="password"] {
		width: 73.8%;
	}
	h1 {
		font-size: 31px;
	}
	.wthree-form h2 {
		letter-spacing: 2px;
	}
}
@media screen and (max-width: 320px) {
	.main-w3layouts-agileinfo {
		padding: 1.5em 1.3em;
		width: 80%;
	}
	h1 {
		font-size: 32px;
		letter-spacing: 0.5px;
		margin: 1em 0 0.6em;
	}
	.wthree-form h2 {
		letter-spacing: 1.5px;
		font-size: 14px;
		margin-bottom: 1em;
	}
	.form-sub-w3 input[type="email"], .form-sub-w3 input[type="password"] {
		padding: 12.5px 60px 12.5px 15px;
		font-size: 13px;
		width: 68.2%;
	}
	label.anim a {
		margin-top: 12px;
		text-align: center;
		float: none;
	}
	.anim {
		text-align: center;
		margin-top: 0em;
	}
	input.checkbox:after {
		left: 59px;
	}
	.submit-agileits input[type="submit"] {
		padding: 8px 68px;
		font-size: 15px;
	}
	.submit-agileits {
		margin-top: 1.3em;
	}
	.footer p {
		margin: 1.6em 2em;
		letter-spacing: 1.4px;
	}
}
/*--- //Responsive Code ---*/