/**
 * 1.0 - Page Builder
 */
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, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-style: inherit;
    font-weight: normal;
    margin: 0;
    padding: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    line-height:1.4;
}

html, body{
    width:100%;
    height: 100%;
    font-size: 100%;
    background-color: #fff;
}

body{
    font-family: 'HelveticaLTStd-Roman';
    font-size: 16px;
    color: #3f3e3e;
    letter-spacing: 0em;
}

p{
}
p ~ p{
    padding-top: 30px;
}

ul{
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

h1{
    font-family: 'HelveticaNeue-Thin';
    font-size: 50px;
    letter-spacing: 0;
    line-height: 0.8;
}

h2{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 35px;
    color: #0c4da2;
    letter-spacing: -0.02em;
    /*text-transform: uppercase;*/
    padding-bottom: 40px;
}
h2 span{
    font-family: 'HelveticaLTStd-Cond';
}

h3{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 24px;
    color: #0c4da2;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
h3 span{
    font-family: 'HelveticaLTStd-Cond';
}

h4{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 16px;
    color: #333333;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    padding-bottom: 25px;
}

h5{
    font-family: 'HelveticaLTStd-Bold';
    font-size: 21px;
    color: #585858;
    padding-bottom: 15px;
}

h6{
}

a:hover, a:active, a:link{
    text-decoration: none;
}
a:focus{
    outline: none;
}
strong{
    font-family: 'HelveticaLTStd-Bold';
}
i{
    color: #f36f21;
    font-size: 40px;
    float: left;
    margin: 0 -50px 0 0;
    position: absolute;
}
/**change the space between col */
.row{
    margin-right: -7px;
    margin-left: -7px;
}
.container, .container-fluid, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
    padding-right: 7px;
    padding-left: 7px;
}

#wrapper{
    background-color: #f4f4f4;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
}
.section-padding{
    padding-top: 75px;
    padding-bottom: 75px;
}
/*Banner*/
#banner-section{
    min-height: 415px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    position: relative;
}
.banner-content-table {
    position: relative;
    width: 100%;
    height: 400px;
    display: table;
    z-index: 99;
}
.banner-content-tablecell{
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
}
.banner-overlay {    
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: 3;
}
/*Button*/
a.button{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    border: 3px solid #fff;
    padding: 15px 50px;
    display: -moz-inline-box;
    display: -webkit-inline-box;
    margin-top: 35px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
a.button:hover{
    border-color: #0c4da2;
    transition: .5s all;
}
a.button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0c4da2;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
a.button:hover:before, a.button:focus:before, a.button:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/*Link*/
a.blue-link,
a.white-link{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    padding-top: 30px;
    display: inline-block;
    position: relative;
}
a.blue-link:before,
a.white-link:before{
    content: '>';
    font-size: 15.5px;
    margin-right: 10px;
    transition: .5s all;
}
a.blue-link:after,
a.white-link:after{
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    top: 39px;
    left: 0;
    transition: .5s all;
}
a.blue-link:hover:before,
a.white-link:hover:before{
    padding-left: 30px;
}
a.blue-link:hover:after,
a.white-link:hover:after{
    width: 30px;
    transition: .5s all;
}
a.blue-link:hover:after{
    background-color: #0c4da2;
}
a.white-link:hover:after{
    background-color: #fff;
}
a.blue-link,
a.blue-link:before{
    color: #0c4da2;
}
a.white-link,
a.white-link:before{
    color: #fff;
}
/*Page sub heading*/
.page-sub-heading p{
    font-family: 'HelveticaLTStd-Roman';
    font-size: 25px;
    color: #9FC3DD;
    line-height: 1.27;
}
#contacts-detail .page-sub-heading p{
    color: #686868;
    font-family: 'HelveticaLTStd-Bold';
}


/**
 * 1.1 - Form CSS
 */
select,
textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="button"],
input[type="tel"],
input[type="password"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
    outline:0;
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

input[type="date"]{
    text-transform: uppercase;
}
/**
 * 1.2 - Primary CSS
 */
/*Header*/
#header{
    padding-top: 18px;
    padding-bottom: 18px;
}
.logo{
    /*margin-top: -10px;*/
}
.upper-nav{
    float: right;
}
.upper-nav ul li {
    display: inline-block;
    padding-left: 30px;
}
.upper-nav ul li a {
    font-family: 'HelveticaLTStd-Cond';
    color: #555555;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    padding: 0;
    padding-top: 15px;
}
#header .navbar-default{
    background-color: transparent;
    border: none;
}
#header .navbar-default .navbar-nav > li > a,
#header .dropdown-menu > li > a{
    color: #232222;
    font-size: 15px;
    letter-spacing: 0.02em;
    background-color: transparent; 
}
#header .navbar-nav > li.active > a,
#header .navbar-nav > li > a:hover,
.upper-nav ul li a:hover{
    background-color: transparent;
    color: #f36f21;
}
#header .navbar-default .nav > li:last-child a {
    /*padding: 15px 0 15px 15px;*/
}
#header .navbar{
    margin-bottom: 0;
}
#header .navbar-collapse{
    padding-right: 0;
}
#header .collapse.in > .collapse{
    display: block !important;
    padding: 0 30px;
}
.current-menu-item a {
    color: #f36f21 !important;
}
#header .current-menu-item ul li a{
    color: #232222 !important;
}
#header .dropdown-menu > li > a:hover, #header .dropdown-menu > li > a:focus{
    color: #f36f21 !important;
    background-color: #0c4da2;
}
#header .navbar-nav > li > .dropdown-menu{
    border-radius: 0;
    background-color: #f3f3f3;
    margin-top: 23px;
    padding: 0;
    border: 0;
}
#header ul.dropdown-menu > li > a{
    padding: 13px 20px 10px !important;
    border-bottom: 1px solid #d7d7d7;
}
/* Modal-form*/
.lostpsw-hide { display: none;}
#footer-section{
    display: none;
}
.modal-header{
    padding-left: 15px;
}
.modal-body{
    padding: 0 30px 30px;
}
h4.modal-title{
    padding-left: 15px;
}
/*Footer*/
#footer h5{
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 25px;
}
.top-footer{
    background-color: #262425;
    padding: 50px 0;
}
.top-footer p, .top-footer ul li, .top-footer ul li a{
    font-family: 'HelveticaLTStd-Roman';
    font-size: 15px;
    color: #fff;
}
.top-footer p{
    padding-bottom: 25px;
}
.bottom-footer{
    background-color: #000000;
    padding: 30px 0;
}
.bottom-footer ul li a,
.bottom-footer p{
    font-family: 'HelveticaLTStd-Cond';
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
}
.bottom-footer .nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #f36f21;
}
.bottom-footer ul li{
    display: inline-block;
    margin-left: 15px;
}
.bottom-footer ul{
    float: right;
}
.footer-copyright {
    padding-top: 6px;
}
/*Home-Banner*/
.home-banner-section{
    min-height: 530px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;

}
.home-banner-section .banner-content-table {
    height: 500px;
}
.home-banner-section h6{
    font-family: 'HelveticaLTStd-Cond';
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    margin-bottom: -20px;
}
.home-banner-section h1{
    font-size: 100px;
    font-family: 'helvetica-neue-bold';
    text-transform: uppercase;
    line-height: 1.22;
    color: #fff;
}
.home-banner-section h1 span{
    font-family: 'HelveticaNeue-Thin';
    text-transform: lowercase;
}
.home-banner-section h5{
    font-family: 'HelveticaLTStd-Roman';
    font-size: 25px;
    color: #fff;
    margin-top: -15px;
}
.home-about p{
    font-size: 19px;
}
/*Home-Solution-Seciton*/
.home-solution:nth-child(odd){
    background-color: #333333;
    display: flex;
}
.home-solution:nth-child(odd) h3,
.home-solution:nth-child(odd) p{
    color: #fff;
}
.solution-sub-title{
    padding: 20px 0;
}
.solution-sub-title h3{
	text-transform: none;
}

.solution-sub-title h3 span{
    text-transform: lowercase;
}
.solution-sub-title h5{
    font-family: 'HelveticaLTStd-Cond';
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #3f3e3e;
    padding-bottom: 0px;
}
.home-solution:nth-child(odd) .solution-sub-title h5{
    color: #fff;
}
.home-solution:nth-child(even){
    background-color: #e1e1e1;
}
.home-solution:nth-child(even) .solution-sub-title h3{
    color: #3f3e3e;
}
/*Home-Services*/
.home-services p{
    font-size: 19px;
}
.home-services {
    display: inline-grid;
}
.home-services-content {
    padding-top: 50px;
}
.home-services-content h3{
    padding-bottom: 25px;
}
.home-services-image{
    min-height: 145px;
    padding-left: 20px;
}
.home-services-content p {
    min-height: 100px;
}

/*About Page*/
#about-solution{
    background-color: #eae9ec;
}
#about-solution h3{
    padding-bottom: 35px;
}
.about-detail-image {
    padding-top: 80px;
}
.about-detail-content:first-child {
    padding-bottom: 70px;
}
/*Partner Page*/
#partners-benefit{
    background-color: #EEEEF2;
}
#partners-benefit h3{
    text-align: center;
}
/*Contact Page*/
.location{
    filter: grayscale(100%);
    padding-top: 50px;
}
#contacts-detail h3{
    padding-top: 50px;
	padding-bottom: 10px;
    letter-spacing: 0.1em;
}
.contacts-detail-content p, .contacts-detail-content ul li, .contacts-detail-content ul li a{
    font-size: 19px;
    color: #585858;
    line-height: 1.6;
}
#contacts-detail{
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}
.contacts-detail-message{
    background-color: #eae9ec;
    position: absolute;
    right: 0;
    padding-bottom: 100%;
    top: 0;
}
.contact-form{
    padding-left: 60px;
    
}
#client-form{
    background-color: #eae9ec;
}

.contact-form p {
    padding-top: 0;
}
.contacts-detail-message h3{
    margin-top: 125px;
    padding-left: 60px;
}
textarea,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="tel"],
input[type="password"],
.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date,
.wpcf7-form-control.wpcf7-select{
    color: #353434;
    background-color: transparent;
    display: block;
    border: 0;
    border-bottom: 1px solid #fff;
    width: 90%;
    padding-top: 35px;
    padding-bottom: 10px;
}
input[type="submit"]{
    background-color: #525058;
    color: #fff;
    padding: 15px 85px 10px 85px;
    margin-top: 50px;
    border: 1px solid #525058;
    position: relative;
    transition:  all 0.4s ease-in-out;
}
input[type="submit"]:hover{
    box-shadow: inset 300px 0 0 #0c4da2;
    border-color: #0c4da2;
}

/*Resources Page*/
.manuals-title h3{
    padding-bottom: 45px;
}
.manuals-content{
    padding-bottom: 60px;
}
.manuals-content:last-child{
    padding-bottom: 70px;
}
.manuals-content a{
    color: #21326f;
}
.manuals-content ul li b {
    padding-top: 20px;
    display: block;
}
/*Products Page*/
#products-intro .products-title h3{
    padding-bottom: 25px;
    text-transform: none;
}
.products-title h3{
    padding-bottom: 50px;
}
#products-features .products-title h3{
    text-transform: none;
}
#products-solutions,
#products-club-solutions{
    background-color: #eeeff3;
}
#products-solutions ul li{
    border-bottom: 3px solid #aaa6a6;
    margin-bottom: 20px;
}
#products-solutions ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#products-features img{
    float: left;
    position: absolute;
}
.products-solutions-content{
    margin-left: 65px;
    padding-bottom: 35px;
}
#products-features .products-title{
    text-align: center;
}
#products-parallax{
    height: 375px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#products-parallax .banner-content-table{
    height: 300px;
}
#products-parallax .banner-overlay {   
    background: #f36f21;
    opacity: 0.66;
}
#products-parallax .banner-content-tablecell{
    text-align: center;
}
.dash{
    width: 105px;
    height: 5px;
    background-color: #fff;
    display: inline-block;
}
#products-parallax h3 {
    font-size: 75px;
    color: #fff;
    margin-top: 70px;
    margin-bottom: -20px;
    text-transform: none;
}
#products-parallax p {
    font-size: 36px;
    color: #fff;
    letter-spacing: 0.025em;
}
#products-parallax a.button {
    color: #fff;
    letter-spacing: 0.05em;
    border: 3px solid #0c4da2;
    background-color: #0c4da2;
    padding: 15px 65px;
    display: inline-block;
    margin-top: 10px;
    transition: .5s all;
}
#products-parallax a.button:hover{
    color: #0c4da2;
}
#products-parallax a.button:before {
    background-color: #fff;
    transition: .5s all;
}

#products-partners{
    text-align: center;
}
#products-partners ul li{
    display: inline-block;
    margin-right: 25px;
}
#products-partners ul li:last-child{
    margin-right: 0;
}
#products-others{
    position: relative;
}
#products-others h2{
    color: #fff;
}
.products-solutions-type h3{
    padding-top: 40px;
    padding-bottom: 25px;
}
.products-title {
    z-index: 5;
}
.products-solutions-block {
    position: absolute;
    top: 0;
    background: #333;
    height: 279px;
    left: 0;
    width: 100%;
}
/*Product-Club Page*/
#products-club-solutions{
    position: relative;
    padding-bottom: 45px;

}
#products-club-solutions .page-sub-heading p{
    color: #585858;
    padding-top: 20px;
    padding-bottom: 50px;
}

.disc-inside{
    list-style-type:disc;
    padding-top: 30px;
}

.disc-inside li{
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 15px;
}

.disc-col-2{
    column-count: 2;
    column-gap: 15px;
}

.club-solution-block{
    margin-top: -155px;
}
.club-solution-content{
    margin-bottom: 14px;
    /*height: 225px;*/
    overflow: hidden;
}
.club-solution-content img{
	width: 100% important;
}

/*.club-solution-content:nth-last-child(-n + 2){
    margin-bottom: 0;
}*/
.club-solution-content h5 {
    color: #fff;
    position: absolute;
    top: 25px;
    left: 35px;
    right: 35px;
    font-family: 'HelveticaNeue-Thin';
}
/*Client Page*/
#client{
    background-color: #eae9ec;
}
/*Client Form*/
#client-form p ~ p {
    padding-top: 0px;
}
#client-form .wpcf7-form-control.wpcf7-select{
    padding-top: 10px;
}
span.wpcf7-form-control-wrap.file-977 {
    padding-top: 30px;
    display: block;
}
/*Table CSS*/
table{
    background-color: transparent !important;
    color: #fff !important;
    margin: 20px 0 !important;
    height: auto !important;
}
table tr td{
    border-bottom: 1px solid #fff !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}
#banner-section .banner-content-tablecell{
    display: block;
    margin-top: 40px;
}
#banner-section h1 span{
    font-size: 40px;
}

#scroll-up {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: 65px;
    z-index: 9999;
    cursor: pointer;
    background-color: #f36f21;
    overflow: hidden;
    display: none;
}

#scroll-up a {
    width: 65px;
    height: 65px;
    cursor: pointer;
    display: block;
    background: url(../images/up-arrow.png) 0 0 no-repeat;
}
/* For Responsiveness */

@media (min-width: 768px){
    .navbar-nav{
        margin: 10px 0 0;
    }
}

@media(min-device-width : 768px) 
and (max-device-width : 1024px) /*ipad*/
{
.home-services-content p {
    min-height: 140px;
}
#header .navbar-nav > li > .dropdown-menu{
    margin-top: 17px;
}
#header .navbar-default .nav > li:last-child a {
    padding: 5px 0 5px 10px;
}
#header .navbar-default .nav > li a{
    padding: 5px 10px;
}
.upper-nav ul li a{
    padding-top: 5px;
}
.col-md-6.club-solution-content:nth-last-child(-n + 2) h5 {
    bottom: 45px;
}
}

@media(max-width:991px)
{ 
    h1,.home-banner-section h1 {
       font-size: 80px;
    }
    .page-sub-heading p {
        font-size: 24px;
        padding-bottom: 30px;
    }
    .about-detail-image {
        padding-bottom: 30px;
    }
    #products-parallax h3 {
        font-size: 50px;
    }
    #products-parallax p {
        font-size: 20px;
        padding: 0 10px;
    }
    #footer h5{
        padding-top: 25px;
    }
    .bottom-footer ul{
        float: none;
    }
    .bottom-footer ul li:first-child{
        margin-left: 0;
    }
    .bottom-footer ul li{
        padding-top: 10px;
    }
    .contacts-detail-message{
        position: relative;
        margin-top: 40px;
        margin-bottom: -75px;
        padding-bottom: 20%;
    }
    .contacts-detail-message h3{
        margin-top: 0;
        padding-left: 0;
    }
    .contact-form{
        padding-left: 0;
    }
    #products-club-solutions{
        margin-top: 0;
    }
    .club-solution-block {
        margin-top: 0px;
    }
    #contacts-detail{
        padding-bottom: 75px;
    }
    /*.col-md-6.club-solution-content:nth-last-child(-n + 2) h5 {
        bottom: 0;
        top: 45%;
    }*/
}

@media(max-width:767px)
{
    .section-padding{
        padding-top: 45px;
        padding-bottom: 45px;
    }
.logo img {
    margin: 0 auto;
}
#header .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
    background-color: transparent;
}
#header .navbar-default .navbar-toggle .icon-bar{
    background-color: #555555;
}
#header .navbar-default .navbar-toggle {
    border-color: #555555;
    border-radius: 0;
    margin-top: -34px;
}
#header .collapse.in ul{
    /*margin-bottom: 40px;
    margin-top: 20px;*/
}
#header .navbar{
    margin-bottom: -50px;
}
.upper-nav{
    margin-right: 15px;
}
#header .upper-nav ul li{
    z-index: 99;
}
.page-id-13 #banner-section{
	background-position: top right;
}

.upper-nav .navbar-nav{
    margin: 0;
}
.upper-nav ul li a{
    padding-top: 0;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form{
    border: none;
}
.navbar-collapse.collapse.in{
    text-align: left;
    overflow: hidden;
    z-index: 9999;
    width: calc(100% + 14px);
    background-color: #f3f3f3;
    left: -7px;
    padding: 0;
    position: absolute;
}
#header .navbar-default {
    float: none;
}
#header .navbar-nav > li > .dropdown-menu{
    text-align: left;
    margin-top: 0;
}

#header .navbar-nav > li > ul.dropdown-menu li:last-child a{
    border: none;
}

#header .navbar-default .nav > li > a{
    padding: 13px 0 10px;
}
#header .navbar-default .navbar-nav > li+ li {
    border-top: 1px solid #d0d0d0;
}
#header .navbar-default .navbar-nav > li:first-child {
    border-top: 1px solid #d0d0d0;
}
h1,.home-banner-section h1 {
    font-size: 38px;
}
.home-banner-section h6{
    margin-bottom: 0;
}
.home-banner-section h5{
    margin-top: 0;
}
h3{
    padding-top: 30px;
}
#about-solution h3,
.solution-sub-title h3,
#products-solutions h3,
#products-features h3,
#products-club-solutions h3{
    padding-top: 0;
}
.products-solutions-type ~ .products-solutions-type {
    padding-top: 40px;
}
.bottom-footer ul li:first-child{
    margin-left: 15px;
}
#products-partners ul li {
    display: inline;
}
#products-partners ul li img {
    margin: 0 auto;
}
.club-solution-block {
    margin-top: 40px;
}
/*.club-solution-content:nth-last-child(-n + 2) {
    margin-bottom: -130px;
}
.col-md-6.club-solution-content:nth-last-child(-n + 2) h5 {
    bottom: 0;
    top: 45px;
}*/

#partners-main img{
    padding-top: 40px;
}
#products-parallax h3 {
    font-size: 40px;
    margin-bottom: -5px;
    padding: 0 10px;
}
}
@media(max-width:480px)
{
h1, .home-banner-section h1 {
    font-size: 35px;
}
.club-solution-content h5 {
    top: 10px;
    left: 25px;
    right: 25px;
    font-size: 13px;
}
}