@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
section {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

html {
    min-height: 100%;
    position: relative;
}

body {
    margin: 0px;
    padding: 0px;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    color: #909090;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background: #fff;
    line-height: 1.5;
    letter-spacing: .4px;
}

ul,
li {
    list-style: none;
}


/*--Custom-css---*/

a,
button {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    outline: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

a {
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
}

.clear {
    clear: both;
}

.relative {
    position: relative;
}

h1 {
    clear: both;
    color: #222529;
    font-size: 40px;
    padding: 0;
}

h2 {
    color: #222529;
    font-size: 35px;
    padding: 0 0 15px;
    position: relative;
    font-weight: 700;
}

h3 {
    color: #222529;
    font-size: 26px;
    padding-bottom: 15px;
    font-weight: 700;
}

h4 {
    color: #222529;
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 700;
}

h5 {
    color: #222529;
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 700;
}

h6 {
    color: #222529;
    font-size: 14px;
    padding-bottom: 5px;
    font-weight: 700;
}

.header-gap {
    padding: 15px 0 0 0;
}

.page-logo h1 {
    font-size: 33px;
}

.page-logo span {
    font-weight: bold;
}

.page-logo a p {
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 10px;
    color: #7bc678;
    font-size: 14px;
}

.btn-bdr a {
    border: 2px solid #7bc678;
    text-transform: uppercase;
    padding: 10px 25px;
    color: #222529;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    background: #fff;
}

.btn-bdr a:hover {
    border: 2px solid #7bc678;
    background: #7bc678;
    color: #fff;
}

.banner-sec {
    padding: 40px 0;
}

.banner-lft h1 {
    font-weight: bold;
}

.banner-lft p {
    color: #999999;
}

.bnr-loginfrm {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 405px;
    flex: 0 0 405px;
    max-width: 405px;
    padding: 40px 0 0 0;
}

.log-input .input-style {
    height: 44px;
    border: 1px #e5e5e5 solid;
    padding: 0 0 0 50px;
    color: #999999;
    border-radius: 10px;
}

.log-input input::placeholder {
    color: #999999;
    font-size: 14px;
}

.log-input {
    margin-bottom: 20px;
}

.user-icn-lft {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    border-right: 1px #e5e5e5 solid;
    padding: 0 10px;
}

.user-icn-lft i {
    color: #7bc678;
    font-size: 18px;
}

.chk-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    border-right: 1px #e5e5e5 solid;
    padding: 0 10px;
}

.eye-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    border-right: 1px #e5e5e5 solid;
    padding: 0 10px;
}


/**********************CheckBox***/

.frm-chk-box input[type="checkbox"] {
    display: none;
}

.frm-chk-box input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
    margin-top: 0;
}

.frm-chk-box input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.frm-chk-box input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #999999;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.frm-chk-box input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/**********************End CheckBox***/

.foget-pas a {
    color: #999999;
    font-size: 14px;
}

.login-btn a,
.login-btn button {
    background: #7bc678;
    text-transform: uppercase;
    padding: 10px 25px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    display: block;
    text-align: center;
    margin-top: 35px;
    border: none;
    width: 100%;
}

.login-btn a:hover {
    color: #222529;
}

.dont-have-acc p {
    color: #999999;
    padding-top: 15px;
    font-size: 16px;
    font-weight: bold;
}

.dont-have-acc p a {
    color: #7bc678;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}


/*
.ftr-social{
	-webkit-box-flex:0;
	-ms-flex: 0 0 180px;
	flex: 0 0 180px;
	max-width: 180px;
	padding: 0 15px;
}
*/

.ftr-social li:not(:last-child) {
    margin-right: 20px;
}

.ftr-social li a {
    color: #fff;
    font-size: 22px;
    height: 25px;
    width: 25px;
    background: #222529;
    border-radius: 3px;
    line-height: 24px;
    text-align: center;
}

.ftr-social li a:hover {
    background: #7bc678;
}

.ftr-menu li a {
    color: #999;
    font-size: 16px;
}

.ftr-menu li:not(:last-child) {
    padding-right: 80px;
}

.ftr-menu li a:hover {
    color: #7bc678;
}

.ftr-text p {
    text-align: center;
    color: #313437;
    font-weight: bold;
    padding: 10px 0 10px 0;
    font-size: 16px;
}


/*
.ftr-sec {
	padding: 10px 0 0 0;
}
*/

.login-bg {
    background: url("../images/bg.svg") no-repeat;
    position: fixed;
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.reg-banner-sec {
    padding: 30px 0;
}

.bnr-registerfrm {
    padding: 20px 0;
}

.log-input .select-style {
    height: 44px;
    border: 1px #e5e5e5 solid;
    padding: 0 0 0 50px;
    color: #999999;
    border-radius: 10px;
}

.select-style {
    appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 1) url(../images/down-arrow.png) center right 10px no-repeat;
    box-shadow: none;
    width: 100%;
    height: 44px !important;
    line-height: 35px;
}

.sign-up-ftrbtn li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.sign-up-ftrbtn li:not(:last-child) {
    margin-right: 30px;
}

.sign-up-ftrbtn a,
.sign-up-ftrbtn button {
    background: #fff;
    border: 1px solid #7bc678;
    text-transform: uppercase;
    padding: 10px 25px;
    color: #222529;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    display: block;
    text-align: center;
    margin-top: 35px;
    width: 100%;
}

.sign-up-ftrbtn a:hover,
.sign-up-ftrbtn button:hover {
    color: #fff;
    background: #7bc678;
    border: 1px solid #7bc678;
}

.sign-up-text p {
    color: #222529;
    font-size: 16px;
    font-weight: bold;
}

.sign-up-text p a {
    color: #7bc678;
    text-transform: uppercase;
    font-size: 17px;
}

.home-banner-lft h1 {
    font-size: 60px;
    font-weight: bold;
}

.home-banner-lft h2 {
    font-size: 32px;
    font-weight: 400;
    color: #7bc678;
}

.home-bnr-btn a {
    border: 2px solid #7bc678;
    text-transform: uppercase;
    padding: 10px 65px;
    color: #222529;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    background: #fff;
    margin-top: 45px;
}

.home-bnr-btn a:hover {
    border: 2px solid #7bc678;
    background: #7bc678;
    color: #fff;
}


/*Humberger*/

.menu-btn button {
    border: none;
    background: transparent;
}

.menu-btn button:focus {
    outline: 0;
}

.humburger-ln span {
    height: 2px;
    background: #222529;
    margin: 5px 0px;
    display: block;
}

.humburger-ln .ln-one {
    width: 38px;
}

.humburger-ln .ln-two {
    width: 38px;
}

.humburger-ln .ln-three {
    width: 26px;
    margin-left: 12px;
}


/*Humberger*/

.help-block {
    margin: 0 !important;
    font-style: normal;
    font-weight: 400;
    color: #f53e3e !important;
    position: absolute;
    top: 100%;
    font-size: 11px;
}

.has-error {
    border-color: #f53e3e !important;
}