/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Jan 10, 2016, 11:08:04 AM
    Author     : Ping
*/

* {
    border: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    line-height: 1.14;
}

a {
    color: #292627;
    cursor: pointer;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

a:hover { color: #cd2027; }

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

p { line-height: 1.5; }

table { border-spacing: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: Raleway, sans-serif;
    font-weight: 700;
    line-height: 1;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 12px; }

.pageholder {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.page {
    width: 100%;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.row {
    overflow: hidden;
    margin: 0 -15px;
}

.row.narrow { margin: 0 -8px; }
.row.nospace { margin: 0; }

.row > div {
    float: left;
    min-height: 1px;
    padding: 0 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.row > .pullright { float: right; }

.row.narrow > div { padding: 0 8px; }
.row.nospace > div { padding: 0; }

.grid0 { display: none; }
.grid1 { width: 8.333333%; }
.grid2 { width: 16.666666%; }
.grid3 { width: 25% }
.grid4 { width: 33.333333%; }
.grid5 { width: 41.666666%; }
.grid6 { width: 50% }
.grid7 { width: 58.333333%; }
.grid8 { width: 66.666666%; }
.grid9 { width: 75% }
.grid10 { width: 83.333333%; }
.grid11 { width: 91.666666%; }
.grid12 { width: 100% }

.space { height: 30px; }

/* header */

.header {
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.header.fixed {
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.header .logo {
    display: block;
    float: left;
    padding: 19px 15px;
    margin-left: -15px;
}

.fixed .logo { padding: 4px 15px; }

.header .logo:hover { background: #f7f7f7; }

.header .fa-bars {
    display: none;
    width: 50px;
    line-height: 50px;
    float: right;
    color: #cd2027;
    text-align: center;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.header .fa-bars.active {
    background: #cd2027;
    color: #fff;
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.header .underline {
    position: absolute;
    top: 0;
    height: 5px;
    background: #cd2027;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.header .menu {
    float: right;
    list-style: none;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.menu > li {
    float: left;
    position: relative;
}

.menu > li > a {
    display: block;
    height: 80px;
    line-height: 80px;
    text-decoration: none;
    padding: 0 12px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.fixed .menu > li > a {
    height: 50px;
    line-height: 50px;
}

.menu > li.narrow > a { padding: 0 15px; }

.menu > li > a:hover { color: #292627; }

.menu > li > a img {
    padding: 15px 0;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.fixed .menu > li > a img { padding: 0; }

.menu > li > a span { display: none; }

.menu > li > div {
    visibility: hidden;
    top: 110%;
    position: absolute;
    left: -100%;
    right: -100%;
    background: #cd2027;
    z-index: -1;
    opacity: 0;
    filter: Alpha(Opacity=0);
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.menu > li.hover > div {
    visibility: visible;
    z-index: 1;
    top: 100%;
    opacity: 1;
    filter: Alpha(Opacity=100);
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.menu > li > div span {
    position: absolute;
    top: -7px;
    width: 15px;
    height: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #cd2027;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.menu > li > div ul {
    list-style: none;
    overflow: hidden;
    position: relative;
}

.menu > li > div ul li {
    float: left;
    width: 33.333333%;
}

.menu > li > div ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 30px 0;
}

.menu > li > div ul li a:hover, .menu > li > div ul li.active a { background: #292627; }

/* footer */

.footer { background: #292627; }

.footer .container { overflow: hidden; }

.copyright {
    float: left;
    font-size: 12px;
    line-height: 18px;
    padding: 40px 0;
    color: #fff;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    padding: 0 12px;
}

.copyright a:hover {
    background: #fff;
    color: #292627;
}

.app-links {
    float: right;
    margin-right: -5px;
}

.app-links a {
    display: block;
    float: left;
    margin: 25px 5px;
}

.social-links {
    float: right;
    margin-right: 30px;
}

.social-links a {
    float: left;
    display: block;
    margin: 31px 2px;
    text-decoration: none;
}

.social-links a i {
    display: block;
    line-height: 38px;
    width: 38px;
    background: #676767;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.social-links a:hover i.fa-facebook { background: #3b5998; }
.social-links a:hover i.fa-instagram { background: #3f729b; }
.social-links a:hover i.fa-twitter { background: #4099ff; }

/* main */

.reserved-area {
    height: 115px;
    background: #cd2027;
}

.banner a { display: block; }

.banner a img {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.greylayer { background: #f7f7f7; }

.key-benefit {
    opacity: 0;
    filter: Alpha(Opacity=0);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.key-benefit.active {
    opacity: 1;
    filter: Alpha(Opacity=100);
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.key-benefit i {
    display: block;
    text-align: center;
    font-size: 64px;
    line-height: 80px;
    color: #292627;
}

.key-benefit p {
    text-align: center;
    font-size: 14px;
}

.video-intro { position: relative; }

.video-intro a { display: block; }

.video-intro img {
    width: 100%;
    max-width: 683px;
    margin: 0 auto;
}

.homevideo { width: 100%; }

.homevideo iframe {
    width: 100%;
    height: 431px;
    overflow: hidden;
    border: none;
    display: block;
}

.homevideo video {
    width: 100%;
    height: 431px;
    overflow: hidden;
    border: none;
    display: block;
}

.homevideo2 iframe {
    width: 550px;
    height: 400px;
    overflow: hidden;
    border: none;
    display: block;
}

.findus {
    display: block;
    overflow: hidden;
}

.findus img { width: 100%; }

.page-title span {
    display: block;
    height: 5px;
    width: 30px;
    background: #cd2027;
}

.paragraph ol {
    padding-left: 20px;
    margin-left: 15px;
}

.paragraph ul {
    list-style: none;
    margin-left: 15px;
}

.paragraph ul li {
    padding-left: 20px;
    position: relative;
}

.paragraph ul li i {
    position: absolute;
    top: 0;
    left: 0;
    color: #cd2027;
    font-size: 10px;
    line-height: 18px;
}

.paragraph li+li { margin-top: 15px; }

.how-it-works {
    position: relative;
    margin: 5px 0;
    padding: 55px 0;
}

.how-it-works .circle1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 422px;
    height: 422px;
    background: #f7f7f7;
    opacity: 0;
    filter: Alpha(Opacity=0);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transition: 2s ease;
    -moz-transition: 2s ease;
    -o-transition: 2s ease;
    -webkit-transition: 2s ease;
}

.how-it-works.active .circle1 {
    opacity: 1;
    filter: Alpha(Opacity=100);
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.how-it-works .circle2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 346px;
    height: 346px;
    background: #f7f7f7;
    opacity: 0;
    filter: Alpha(Opacity=0);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transition: 1.5s ease;
    -moz-transition: 1.5s ease;
    -o-transition: 1.5s ease;
    -webkit-transition: 1.5s ease;
}

.how-it-works.active .circle2 {
    opacity: 1;
    filter: Alpha(Opacity=100);
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.how-it-works .row { position: relative; }

.how-it-works .step {
    position: relative;
    opacity: 0;
    filter: Alpha(Opacity=0);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transition: 1s ease;
    -moz-transition: 1.5s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.how-it-works.active .step {
    opacity: 1;
    filter: Alpha(Opacity=100);
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}

.how-it-works .step span {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    background: #cd2027;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.how-it-works .step img { margin-bottom: 15px; }

.how-it-works .step p {
    width: 160px;
    margin: 0 auto;
    text-align: center;
    color: #cd2027;
    line-height: 1.14;
}

.how-it-works .row > div > img {
    margin: 35px auto;
    opacity: 0;
    filter: Alpha(Opacity=0);
    transform: scale(0) rotate(0deg);
    -moz-transform: scale(0) rotate(0deg);
    -ms-transform: scale(0) rotate(0deg);
    -webkit-transform: scale(0) rotate(0deg);
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.how-it-works.active .row > div > img {
    opacity: 1;
    filter: Alpha(Opacity=100);
}

.how-it-works.active .pointdown {
    transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
}

.how-it-works.active .pointleft {
    transform: scale(1) rotate(90deg);
    -moz-transform: scale(1) rotate(90deg);
    -ms-transform: scale(1) rotate(90deg);
    -webkit-transform: scale(1) rotate(90deg);
}

.how-it-works.active .pointright {
    transform: scale(1) rotate(270deg);
    -moz-transform: scale(1) rotate(270deg);
    -ms-transform: scale(1) rotate(270deg);
    -webkit-transform: scale(1) rotate(270deg);
}

.highlight {
    padding: 20px;
    background: #ec5a11;
	margin-top:20px;
	width:500px;
}

.highlight ul { list-style: none; }

.highlight ul li {
    padding-left: 30px;
    position: relative;
    color: #fff;
}

.highlight ul li+li { margin-top: 15px; }

.highlight ul li i {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    line-height: 18px;
}

.highlight ul li a { color: #fff; }

.signup-link {
    overflow: hidden;
	width:500px;
	margin-top:20px;
}

.signup-link a {
    display: block;
    float: left;
    line-height: 17px;
    padding: 10px 0;
    color: #cd2027;
}

.signup-link img {
    float: left;
    margin-left: 15px;
}

.sample-mail img { width: 100%; }

.benefit {
    position: relative;
    margin: 0px 0;
    padding-top: 55px;
}

.benefit .circle1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 340px;
    background: #f7f7f7;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3);
}

.benefit .circle2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 285px;
    height: 285px;
    background: #f7f7f7;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3);
}

.benefit .row { position: relative; }

.benefit i {
    display: block;
    text-align: center;
    font-size: 64px;
    line-height: 80px;
}

.benefit p {
    max-width: 254px;
    text-align: center;
    margin: 0 auto 60px;
}

.address {
    position: relative;
    padding-left: 20px;
}

.address i {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 24px;
    color: #cd2027;
    font-size: 24px;
}

.contactinfo {
    line-height: 1.5;
    width: 370px;
}

.contactinfo tr td:first-child { width: 24px; }

.contactinfo i { color: #cd2027; }

.contactinfo a { text-decoration: none; }

.contactinfo b { color: #cd2027; }

.tabs {
    position: relative;
    width: 320px;
    margin: 0 auto;
    height: 60px;
    z-index: 2;
}

.tabs a {
    position: relative;
    display: block;
    float: left;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    width: 160px;
    background: #292627;
    color: #676767;
}

.tabs a:hover { color: #f1f1f1; }

.tabs a.active {
    background: #cd2027;
    color: #fff;
}

.tabs a i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    font-size: 48px;
    color: #292627;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.tabs a:hover i { bottom: -30px; }

.tabs a.active i {
    color: #cd2027;
    bottom: -30px;
}

.tabs-content {
    position: relative;
    background: #f7f7f7;
    border-top: 3px #cd2027 solid;
}

.googlemap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.googlemap.bringforward { z-index: 1; }

.contactform {
    position: relative;
    background: #fff;
    background: rgba(255,255,255,0.7);
}

.contactform .container { max-width: 900px; }

.field {
    position: relative;
    margin-bottom: 10px;
}

.field label {
    position: absolute;
    top: 0;
    left: 15px;
    line-height: 40px;
    color: #676767;
    font-size: 14px;
}

.field input, .field textarea {
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: #2720cd;
    display: block;
    background-color: #fff;
    background-position: right top;
    background-repeat: no-repeat;
    border: 1px #999 solid;
    line-height: 40px;
    height: 40px;
    width: 100%;
    padding: 0 40px;
    text-align: right;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.field input[type='checkbox']{
    display: inline;
    line-height: 20px;
    height: 13px;
    width:auto;
}

.field input[type='file']{
    line-height: 0px;
    padding-top: 8px;
}

.field .addon_other{
    display: inline;
    width:35px;
    max-width:35px;
    text-align: left;
    padding-left: 5px;
    padding-right: 0px;
}

.checkbox_div{
    float: left;
    margin-right: 20px;
}

.address_title{
    line-height: 20px;
    color: #676767;
    font-size: 14px;
}

.addon_span_title{
    display: inline-block;
    margin-right:10px;
    width: 230px;
}

#name { text-transform: capitalize; }

.field textarea {
    padding: 40px 15px 15px;
    line-height: 1.5;
    height: 120px;
    resize: none;
    overflow: auto;
    text-align: justify;
}

.field input:focus, .field textarea:focus {
    border-color: #676767;
    background-color: #fff;
}

.field .correct { background-image: url(../img/correct.png); }
.field .incorrect { background-image: url(../img/incorrect.png); }

.field button {
    display: block;
    text-align: center;
    width: 100%;
    height: 40px;
    font-size: 20px;
    background: #cd2027;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 20px auto 0;
    cursor: pointer;
    outline: none;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}

.g-recaptcha {
    width: 304px;
    margin-left: -6px;
    transform: scale(0.96);
    -moz-transform: scale(0.96);
    -ms-transform: scale(0.96);
    -webkit-transform: scale(0.96);
}

.field button:hover { background: #292627; }

.testimonials { background: #f1f1f1; }

.testimonials .item { text-align: center; }
.testimonials .item p { padding: 120px 60px 15px; }
.testimonials .item b {
    display: block;
    padding: 0 60px 120px;
}

.slide {
    background: center center;
    background-size: cover;
}

.slide .container {
    position: relative;
    height: 500px;
}

.slide h2 {
    color: #fff;
    background: #000;
    background: rgba(0,0,0,0.7);
    position: absolute;
    bottom: 50%;
    padding: 15px 30px;
    margin-bottom: -125px;
    /*right: 0;*/
}

.slide h4 {
    color: #000;
    background: #fff;
    background: rgba(255,255,255,0.7);
    position: absolute;
    top: 50%;
    padding: 15px 30px;
    margin-top: 130px;
    /*right: 0;*/
}

/* submission page */

.submissionpage { background: #f7f7f7; }

.submissionpage div {
    margin: 100px auto 0;
    max-width: 500px;
    background: #fff;
    padding: 30px;
    border: 1px #f1f1f1 solid;
    overflow: hidden;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.submissionpage a {
    display: block;
    float: right;
    padding: 10px 30px;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 700;
    background: #cd2027;
    text-decoration: none;
}

.submissionpage a:hover { background: #676767; }

.register-button{
    text-align: center !important;
    height: 30px;
    margin: 0  !important;
    padding: 0 10px;
    font-size: 14px !important;
    background: #cd2027;
    color: #fff;
    font-family: Raleway, sans-serif  !important;
    font-weight: 700;
    text-align: center;
    margin: 20px auto 0;
    cursor: pointer;
    outline: none;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
}
.button-blue{
    background: blue;
}
.button-green{
    background: green;
}
.button-grey{
    background: grey;
}
.asterisk{
    color:red;
}
.field select{
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: #2720cd;
    display: block;
    background-color: #fff;
    background-color: rgba(255,255,255,0.9);
    background-position: right top;
    background-repeat: no-repeat;
    border: 1px #999 solid;
    line-height: 40px;
    height: 40px;
    width: 100%;
    padding: 0 40px;
    text-align: right;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance:none;
    appearance:none;
}
.field select::-ms-expand {
    display: none;
}
.field option {
    direction: ltr;
}
.addon-input{
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: #2720cd;
    background-color: #fff;
    background-color: rgba(255,255,255,0.9);
    background-position: right top;
    background-repeat: no-repeat;
    border: 1px #999 solid;
    line-height: 30px;
    height: 30px;
    width: 40px;
    padding: 0 10px;
    text-align: center;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance:none;
    appearance:none;
}
.addon-input::-ms-expand {
    display: none;
}
.upload{
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: #2720cd;
    display: block;
    background-color: #fff;
    background-color: rgba(255,255,255,0.9);
    background-position: right top;
    background-repeat: no-repeat;
    border: 1px #999 solid;
    width: 100%;
    padding: 10px;
    outline: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.button-action{
    text-align: center;
    padding:5px;
    background:none;
    cursor:pointer;
}
.summary table{
    border: 1px #f1f1f1 solid;
    font-size:14px;
    width:100%;
}
.summary table tr td{
    padding:10px;
    font-size:14px;
}
.summary table tr td:first-child{
    border-right: 1px #f1f1f1 solid;
}
.summary table tr td:last-child{
    text-align:right;
}
.indexbutton{
    border-radius: 13px;
    box-shadow: 2px 2px 15px 3px #404040;
    font-size:20px;
    border-style: none groove groove none;
    border-bottom-width: 5px;
    border-right-width: 4px;
    background-color: rgb(242, 102, 37);
    color:white;
    padding:12px 14px;
    text-decoration:none;
    border-color:rgb(242,154,110);
    position:absolute;
    bottom:14%;
    margin-left:385px;
}

.backtoopagebutton{
    font-size:15px;
    border-style: solid;
    background-color: rgb(242, 102, 37);
    color:white;
    padding:5px 14px;
    text-decoration:none;
    border-color:rgb(242,102,37);
	margin-top:100px;
	position:absolute;

}

.marquee {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    background: #f1f1f1;
    border-top: 5px #cd2027 solid;
    overflow: hidden;
}

.marquee .viewport {
    position: relative;
    overflow: hidden;
}

.marquee .marqueecontent {
    position: relative;
    height: 30px;
    overflow: hidden;
	font-weight:bold;
}

@keyframes marquee {
    0% { left: 100%; }
    100% { left: -100%; }
}

@-webkit-keyframes marquee {
    0% { left: 100%; }
    100% { left: -100%; }
}

.marquee span {
    position: absolute;
    top: 0;
    left: 100%;
    white-space: nowrap;
    line-height: 30px;
    font-size: 12px;
	color: #f26625;
}

.marquee.active span {
    animation: 30s marquee infinite linear;
    -moz-animation: 30s marquee infinite linear;
    -webkit-animation: 30s marquee infinite linear;
}

.mapdesign a {
	display: block;
	text-decoration: none;
	position: absolute;
	left: 50%;
	right: 0;
	bottom: 0;
	top: 0;
	background-image: url(../img/map/home.jpg);
	background-position: left 112px;
	background-size: 100% auto;
}

@media (max-width:767px) {
	.mapdesign a {
		position: static;
		height: 420px;
	}
}

.mapdesign h2,.mapdesign h3{
	background: #fff;
	font-weight:normal;
	font-family:Open Sans,sans-serif;
	color:#333;
	text-align:center;
}

.mapdesign h3 {
	padding-bottom:40px;
}
.mapdesign h2 {
	padding-top:40px;
}

#googleMap{
	height:299px;
}
.floating-whatsapp-button{
    color: #ffffff;
    background-color: rgba(255,255,255,0);
    border-radius: 4px;
    text-decoration: none;
    z-index: 10;
    position: fixed;
    bottom: 5px;
    left: 10px;
}