html,
body {
    padding: 0;
    margin: 0;
    min-width: 320px;
}

html {
    background-color: #edeeee;
    height: 100%;
    overflow-y: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100%;
    font-size: 16px;
    line-height: 1em;
    color: #000000;
}

input,
textarea,
select,
button {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
}

a {
    color: #7eb928;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1em;
}

h1 {
    font-size: 34px;
    font-weight: 900;
}

h2 {
    font-size: 25px;
    font-weight: 700;
}

h3 {
    font-size: 23px;
    font-weight: 700;
}

h4 {
    font-size: 23px;
    font-weight: 400;
}

h5 {
    font-size: 20px;
    font-weight: 700;
}

h6 {
    font-size: 18px;
    font-weight: 700;
}

.click-cont {
    cursor: pointer;
}

.all-caps {
    text-transform: uppercase;
}

.hidden {
    display: none !important;
}

.width-limiter {
    /* SET SITE MAX WIDTH */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.width-limiter.light-padding {
    padding-left: 10px;
    padding-right: 10px;
}

.wide-width-limiter {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

.wide-width-limiter.light-padding {
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (min-width: 769px) {

    .width-limiter.heavy-padding-desktop,
    .wide-width-limiter.heavy-padding-desktop {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.relative {
    position: relative;
}

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

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

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

@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 769px) {
    .flex-desktop {
        display: flex;
    }

    .hide-on-desktop {
        display: none !important;
    }
}

.form-width-limiter {
    max-width: 500px;
}

.vertically-aligned {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* vertically and horizontally */
.both-aligned {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.form-button {
    font-size: 16px;
    line-height: 1em;
    display: inline-block;
    padding: 12px 20px;
    background-color: #313131;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #313131;
    cursor: pointer;
    box-sizing: border-box;
}

.form-button:hover,
.form-button.inverse:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #111111;
}

.form-button.outline {
    background-color: transparent;
    border-color: #ffffff;
}

.form-button.outline:hover {
    opacity: .8;
}

.form-button.green {
    background-color: #5b8d12;
    border-color: #5b8d12;
}

.form-button.green:hover {
    background-color: #558312;
    border-color: #558312;
}

.form-button.light-green {
    /*background-color: #4cae28;
	border-color: #4cae28;*/
    background-color: #7eb928;
    border-color: #7eb928;
}

.form-button.light-green:hover {
    /*background-color: #49a228;
		border-color: #49a228;*/
    background-color: #558312;
    border-color: #558312;
}

.form-button.blue {
    background-color: #057fb2;
    border-color: #057fb2;
}

.form-button.blue:hover {
    background-color: #0375a5;
    border-color: #0375a5;
}

.form-button.light-blue {
    background-color: #1dafec;
    border-color: #1dafec;
}

.form-button.light-blue:hover {
    background-color: #1596cb;
    border-color: #1596cb;
}

.form-button.orange {
    background-color: #db7228;
    border-color: #db7228;
}

.form-button.orange:hover {
    background-color: #bd580a;
    border-color: #bd580a;
}



#top-bar-cont {
    background-color: #2c2c30;
    text-align: right;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
    line-height: 1em;
}

#top-bar-cont,
#top-bar-cont a {
    color: #ffffff;
    text-decoration: none;
}

#top-bar-cont a {
    font-weight: 700;
}

#top-bar-cont a:hover {
    opacity: .8;
}

#top-bar-cont>.width-limiter>ul,
#top-bar-cont>.width-limiter>form {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

#top-bar-cont>.width-limiter>ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

#top-bar-cont form input[type=text] {
    font-size: 12px;
    line-height: 1em;
    border-radius: 3px;
    border: none;
    padding-right: 34px;
    height: 24px;
}

#top-bar-cont form .submit-button {
    background-image: url(../images/icon-search.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #7eb928;
    background-size: 10px;
    border: none;
    border-radius: 0px 3px 3px 0px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 24px;
    height: 24px;

}

#top-bar-cont form .submit-button:hover {
    background-color: #93d50a;
}

@media screen and (max-width: 768px) {
    #top-bar-cont {
        padding-top: 15px;
        padding-bottom: 15px;
        height: 50px;
        box-sizing: border-box;
        text-align: left;
    }
}

#mobile-menu-button {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 10px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/icon-nav-menu.svg) center center no-repeat;
    background-size: contain;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

#mobile-menu-button.active {
    background: url(../images/icon-close-white.svg) center center no-repeat;
    background-size: 20px;
    -webkit-transform: rotate(90deg) translateX(-50%);
    -moz-transform: rotate(90deg) translateX(-50%);
    -o-transform: rotate(90deg) translateX(-50%);
    -ms-transform: rotate(90deg) translateX(-50%);
    transform: rotate(90deg) translateX(-50%);
}

@media screen and (min-width: 769px) {
    #mobile-menu-button {
        display: none;
    }
}

#header {
    background-color: #1dafec;
    color: #ffffff;
    position: relative;
    z-index: 1010;
}

#header ul {
    margin: 0;
    padding: 0;
}

#header ul li {
    list-style: none;
}

#header a {
    color: #ffffff;
    text-decoration: none;
}

.logo-cont .bata-logo {
    display: block;
    width: 225px;
    height: 94px;
    background-image: url(../images/logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#header-logo-cont {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
}

#header-logo-cont .logo-cont {}

#header-logo-cont .form-button.passage {
    margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
    #header-logo-cont {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #header-logo-cont .logo-cont,
    #header-logo-cont .right-cont {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        box-sizing: border-box;
    }

    #header-logo-cont .right-cont {
        text-align: right;
        font-size: 18px;
        line-height: 1em;
        font-weight: 500;
    }
}


#main-navigation-cont {
    background-color: #0697d3;
    border-bottom: 1px solid #ffffff;
}

#main-navigation {
    position: relative;
}

#main-navigation>ul>li {}

#main-navigation ul li a {
    padding: 12px 10px;
    display: block;
}

#main-navigation>ul>li>a {
    padding: 15px 5px;
    font-size: 14px;
}

#main-navigation>ul>li>a:before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: transparent;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    border-radius: 50%;
    margin-right: 4px;
}

#main-navigation ul li .dropdown {
    background-color: #2c2c30;
}

#main-navigation ul li .dropdown ul li {
    box-sizing: border-box;
}

#main-navigation ul li .dropdown .icon-cont {
    display: inline-block;
    vertical-align: middle;
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    text-align: center;
}

#main-navigation ul li .dropdown .icon-cont .circle-cont {
    width: 112px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#main-navigation ul li .dropdown .icon-cont .circle-cont .circle {
    height: 0px;
    padding-top: 100%;
    background: url(../images/icon-blue-circle.svg) center center no-repeat;
    background-size: contain;
}

#main-navigation ul li .dropdown .icon-cont .circle-cont .circle .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    display: block;
    max-width: 55%;
    max-height: 50%;
}

#main-navigation ul li .dropdown .icon-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-top: 10px;
    max-width: 150px;
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    #main-navigation-cont {
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
    }

    #header.fixed #main-navigation-cont {
        position: fixed;
    }

    #header.fixed #top-bar-cont {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
    }

    #header #top-bar-cont.inactive {
        top: -100%;
    }

    #header.fixed #top-bar-filler {
        height: 50px;
    }

    #main-navigation-cont:not(.active) {
        display: none;
    }

    #main-navigation ul li a {
        display: block;
        font-size: 16px;
        line-height: 1em;
        padding-left: 15px;
        padding-right: 15px;
    }

    #main-navigation>ul>li>a {
        border-top: 1px solid #ffffff;

    }

    #main-navigation ul li .dropdown {
        display: none;
    }

    #main-navigation ul li .dropdown ul li {
        border-bottom: 1px solid #444444;
    }

    #main-navigation ul li.hover>.dropdown {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    #main-navigation>ul {
        display: flex;
    }

    #main-navigation>ul>li {
        display: inline-block;
        vertical-align: top;
        flex: 1 1 auto;
    }

    #main-navigation ul li:not(.on):not(:hover)>.dropdown {
        display: none;
    }

    #main-navigation>ul>li>a {
        text-align: center;
        border-right: 1px solid #ffffff;
        padding: 15px 5px;
        font-size: 13px;
    }

    #main-navigation>ul>li:first-child>a {
        border-left: 1px solid #ffffff;
    }

    #main-navigation>ul>li:hover>a {
        background-color: #2c2c30;
    }

    #main-navigation ul li .dropdown {
        position: absolute;
        left: 0;
        right: 0;
        background-color: #2c2c30;
        background-image: url(../images/bg-bubbles-light.svg);
        background-size: 373px 181px;
        background-repeat: no-repeat;
        background-position: calc(100% - 15px) 20%;
        padding: 30px;
        border-top: 1px solid #ffffff;
    }

    #main-navigation ul li .dropdown>ul {
        display: inline-block;
        vertical-align: middle;
        width: 66.66%;
    }

    #main-navigation ul li .dropdown ul li {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 0px 10px;
    }

    #main-navigation ul li .dropdown ul li a {
        border-top: 1px solid #424245;
    }

    #main-navigation ul li .dropdown ul li a.on,
    #main-navigation ul li .dropdown ul li a:hover {
        color: #93d50a;
    }

    #main-navigation ul li .dropdown ul li:first-child a,
    #main-navigation ul li .dropdown ul li:nth-child(2) a {
        border-top: none;
    }
}

@media screen and (min-width: 801px) {
    #main-navigation>ul>li>a {
        font-size: 14px;
    }
}

@media screen and (min-width: 975px) {
    #main-navigation>ul>li>a {
        font-size: 17px;
    }

    #main-navigation>ul>li>a:before {
        margin-right: 8px;
    }
}



.arrow-link:after,
.arrow-right:after,
.arrow-left:before {
    content: '';
    display: inline-block;
    vertical-align: inherit;
    width: 10px;
    height: 11px;
}

.arrow-link:after,
.arrow-right:after {
    background: url(../images/icon-link-arrow-right.svg) center center no-repeat;
    background-size: contain;
    margin-left: 5px;
}

.arrow-left:before {
    background: url(../images/icon-link-arrow-left.svg) center center no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.scroller-controls {
    text-align: center;
    margin-top: 20px;
}

.scroller-controls .form-button {
    padding-left: 35px;
    padding-right: 35px;
}

.scroller-controls .form-button+.form-button {
    margin-left: 10px;
}

ul.social {
    margin: 0;
    padding: 0;
}

ul.social li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

ul.social li:last-child {
    margin-right: 0px;
}

ul.social li a {
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-facebook {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-facebook-white.svg);
    background-size: contain;
}

.icon-instagram {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-instagram-white.svg);
    background-size: contain;
}

.icon-youtube {
    width: 16px;
    height: 20px;
    background-image: url(../images/icon-youtube-white.svg);
    background-size: contain;
}

.news-cont {}

.news-cont .story {
    border-bottom: 1px solid #3c4042;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 375px;
}

.news-cont .story .title {
    font-size: 16px;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.news-cont .story:first-child {
    padding-top: 0px;
}

.news-cont .story:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}


#footer {
    background-color: #262a2c;
    font-size: 15px;
    line-height: 1em;
    color: #ffffff;
}

#footer>.width-limiter {
    padding-top: 45px;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
}

#footer a:hover {
    opacity: .75;
    text-decoration: none;
}

#footer ul {
    margin: 0;
    padding: 0;
}

#footer ul li {
    list-style: none;
}

#footer section {
    padding-bottom: 35px;
}

#footer .footer-title {
    font-size: 19px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 20px;
}

#footer ul.quick-links li:not(:last-child) {
    margin-bottom: 15px;
}

#footer .logo-cont,
#footer .address-cont {
    margin-bottom: 18px;
}

#footer .logo-cont .bata-logo {
    width: 190px;
    height: 80px;
}

#footer .address-cont>div:not(:last-child) {
    margin-bottom: 3px;
}

@media screen and (max-width: 999px) {
    #footer {
        text-align: center;
        background-image: url(../images/bg-bubbles-light.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
    }

    #footer>.width-limiter {
        display: inline-block;
        vertical-align: top;
        /*text-align: left;*/
    }

    #footer .logo-cont .bata-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1000px) {
    #footer {}

    #footer>.width-limiter {
        display: flex;
        padding-top: 70px;
        background-image: url(../images/bg-bubbles-light.svg);
        background-size: 665px 325px;
        background-repeat: no-repeat;
        background-position: left top;
    }

    #footer section {
        padding-bottom: 100px;
        display: inline-block;
        vertical-align: top;
        flex: 1 1 auto;
    }
}


#copyright-cont {
    background-color: #2d3133;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

#copyright-cont,
#copyright-cont a {
    font-size: 11px;
    line-height: 1em;
    color: #ffffff;
}

#copyright-cont a {
    font-weight: 700;
}

#copyright-cont a+a:before {
    content: '\|';
    padding-left: 4px;
    padding-right: 4px;
}


#hero-cont {
    position: relative;
}

#hm-hero {
    height: 500px;
    position: relative;
    overflow: hidden;
}


#hm-hero .slide {
    display: block;
    list-style: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    box-sizing: border-box;
}

#hm-hero .slide .text-cont {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ffffff;
    background: rgba(0,0,0, .5);
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 100%);
    padding: 50px 0 50px;
    text-shadow: 0 0 8px rgba(0, 0, 0, .5);
}

#hm-hero .slide .text-cont h1{
    font-size: 72px;
    margin-top: 0;
}

#hm-hero .slide .text-cont h2{
    font-size: 48px;
}

#hm-hero .slide .text-cont p{
    font-size: 20px;
}

@media screen and (max-width: 800px) {
    #hm-hero .slide .text-cont h1{
        font-size: 48px;
    }

    #hm-hero .slide .text-cont h2{
        font-size: 30px;
    }

    #hm-hero .slide .text-cont p{
        font-size: 18px;
    }
}

#hm-hero .slide .text-cont a{
    color: #fff;
}

#hm-hero .slide .text-cont .button{
    margin-top: 30px;
}

/*#hm-hero .slide .text-cont .left-cont {
    margin-bottom: 12px;
}*/

@media screen and (min-width: 769px) {
    #hm-hero .slide .text-cont .left-cont {
        min-width: calc(100% - 340px);
        padding-right: 20px;
        box-sizing: border-box;
    }

    #hm-hero .slide .text-cont .left-cont,
    #hm-hero .slide .text-cont .right-cont {
        display: inline-block;
        vertical-align: top;
    }
}

#hm-hero .slide .text-cont .title {
    font-size: 24px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 5px;
}

#hm-hero .slide .text-cont .subtitle {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 400;
}

@media screen and (max-width: 499px) {
    /*#hm-hero .slide .image {
        height: calc(100% - 55px) !important;
    }*/

    #hm-hero .slide .text-cont.app {
        bottom: 0px;
    }

    #hm-hero .slide .text-cont .right-cont {
        display: block;
        text-align: center;
    }

    #hm-hero .logo-google-play,
    #hm-hero .logo-app-store {
        max-width: calc(50% - 10px);
    }
}

#hm-hero .logo-google-play,
#hm-hero .logo-app-store {
    display: inline-block;
    vertical-align: top;
    width: 160px;
    height: 50px;
    margin: 30px 5px 0;
}

#hm-hero .logo-google-play:hover,
#hm-hero .logo-app-store:hover {
    opacity: .85;
}

#hm-hero .logo-google-play {
    background: url(../images/logo-google-play.png) center center no-repeat;
    background-size: contain;
}

#hm-hero .logo-app-store {
    background: url(../images/logo-app-store.png) center center no-repeat;
    background-size: contain;
}

@media screen and (min-width: 769px) {
    #hm-hero {
        height: 550px;
    }

    #hm-hero .slide .text-cont>.width-limiter {
        padding-left: 115px;
        box-sizing: content-box;
    }
}

@media screen and (min-width: 1150px) {
    #hm-hero {
        height: 600px;
    }
}

@media screen and (min-width: 1500px) {
    #hm-hero {
        height: calc(100vh - 195px);
        min-height: 600px;
    }

    #hm-hero .slide .text-cont .title {
        font-size: 36px;
        line-height: 1.2em;
        font-weight: 700;
    }

    #hm-hero .slide .text-cont .subtitle {
        font-size: 24px;
        font-weight: 300;
    }
}



.alert-info-cont {
    z-index: 1009;
}

.alert-info-cont ul {
    margin: 0;
    padding: 0;
    position: relative;
}

.alert-info-cont li {
    list-style: none;
    text-align: center;
}

.alert-info-cont .alert-cont {
    background-color: #e74543;
}

.alert-info-cont .alert-cont.inactive {
    background-color: #cccccc;
}

.alert-info-cont .signup-cont {
    background-color: #65656a;
}

.alert-info-cont .signup-cont form {}

.alert-info-cont .signup-cont form input[type=text] {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 92px);
    height: 35px;
    border-radius: 4px 0px 0px 4px;
    border: 1px solid #aaaaaa;
}

.alert-info-cont .signup-cont form .form-button {
    vertical-align: middle;
    padding: 0;
    height: 35px;
    width: 85px;
    line-height: 32px;
    max-width: 90px;
    text-align: center;
    border-radius: 0px 4px 4px 0px;
}

.alert-info-cont li .text-cont {
    background-color: #ffffff;
}

.alert-info-cont li:not(.on) .text-cont {
    display: none;
}

.alert-info-cont li .text-cont>div {
    padding: 30px;
    box-sizing: border-box;
}

.alert-info-cont li .text-cont .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    display: block;
    background: url(../images/icon-close.svg) center center no-repeat;
    background-size: contain;
}

.alert-info-cont li>.click-cont {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 10px 8px 10px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.alert-info-cont .alert-cont.inactive>.click-cont {
    pointer-events: none;
}

.alert-info-cont li>.click-cont:hover {
    opacity: .75;
}


.alert-info-cont li>.click-cont:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.alert-info-cont li.careers-cont{
    background-color: #f18f01;
    font-style: italic;
}

.alert-info-cont .alert-cont>.click-cont:before {
    background-image: url(../images/icon-alert.svg);
    background-position: center 42%;
    background-size: 12px 10px;
}

.alert-info-cont .alert-cont.inactive>.click-cont:before {
    background-image: url(../images/icon-alert-inactive.svg);
}

.alert-info-cont .signup-cont>.click-cont:before {
    background-image: url(../images/icon-bus-darkgrey.svg);
    background-size: 10px 11px;
}

.alert-info-cont .careers-cont>.click-cont:before {
    background-image: url(../images/icon-careers.png);
    background-size: 27px 16px;
}

@media screen and (max-width: 768px) {
    .alert-info-cont {
        position: fixed;
        bottom: 0px;
        left: 0;
        right: 0;
    }

    .alert-info-cont.inactive {
        display: none;
    }

    .alert-info-cont li {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
    }

    .alert-info-cont li.careers-cont{
        width: 100%;
        border-top: none;
    }

    .alert-info-cont li .text-cont {
        position: fixed;
        bottom: 34px;
        left: 0;
        right: 0;
        max-height: calc(100% - 216px);
        overflow-y: auto;
    }

    .alert-info-cont .careers-cont>.click-cont:before {
        background-size: 14px 8px;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-button {
        width: 0px;
        height: 0px;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-thumb {
        background: #686868;
        border: 0px none #ffffff;
        border-radius: 50px;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-thumb:active {
        background: #000000;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-track {
        background: #ddd;
        border: 0px none #ffffff;
        border-radius: 0px;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-track:hover {
        background: #ddd;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-track:active {
        background: #ccc;
    }

    .alert-info-cont li .text-cont::-webkit-scrollbar-corner {
        background: transparent;
    }


    .alert-info-cont li>.click-cont:before {
        margin-top: -2px;
    }
}

@media screen and (min-width: 769px) {
    .alert-info-cont {
        position: absolute;
        left: 0px;
        top: 50%;
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .alert-info-cont li {
        display: block;
        width: 100px;
        position: relative;
    }

    .alert-info-cont li .text-cont {
        position: absolute;
        top: 0px;
        left: 100%;
        width: 430px;
    }

    .alert-info-cont li>.click-cont {
        padding: 22px 18px 20px 18px;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.1em;
    }

    .alert-info-cont li>.click-cont:before {
        display: block;
        width: 50px;
        height: 50px;
        margin: 0px auto 10px auto;
    }

    .alert-info-cont .alert-cont>.click-cont:before {
        background-size: 22px 21px;
    }

    .alert-info-cont .signup-cont>.click-cont:before {
        background-size: 22px 21px;
    }

    .alert-info-cont li>.click-cont .mobile{
        display: none;
    }
}

@media screen and (max-width: 770px) {
    .alert-info-cont li>.click-cont .full{
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
    #interior-hero .alert-info-cont {
        top: 15px;
        transform: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1390px) {
    .alert-info-cont li>.click-cont {
        font-size: 15px;
        padding: 5px 12px 5px 12px;
    }

    .alert-info-cont li>.click-cont:before {
        margin-bottom: 5px;
    }
}



#homepage-content-cont {
    padding-top: 20px;
    padding-bottom: 20px;
}

#homepage-content-cont .section>div,
#homepage-content-cont .section>form {
    box-sizing: border-box;
}

@media screen and (max-width: 649px) {
    #homepage-content-cont .section {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 499px) {
    #homepage-content-cont {
        padding-top: 5px;
    }

    #homepage-content-cont .section {
        margin-top: 0px;
    }
}

@media screen and (min-width: 650px) {
    #homepage-content-cont {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #homepage-content-cont>div {
        display: flex;
        flex-wrap: wrap;
    }

    #homepage-content-cont .section {
        display: inline-block;
        vertical-align: top;
        width: calc(33.33% - 20px);
        flex: 1 1 calc(33.33% - 20px);
    }

    #homepage-content-cont .section>div,
    #homepage-content-cont .section>form {
        height: 100%;
    }
}

@media screen and (min-width: 650px) and (max-width: 1049px) {
    #homepage-content-cont .section {
        width: calc(50% - 15px);
        flex: 1 1 calc(50% - 10px);
    }

    #homepage-content-cont .section:first-child {
        margin-right: 20px;
    }

    #homepage-content-cont .section:last-child {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (min-width: 1050px) {
    #homepage-content-cont .section {
        width: calc(33.33% - 20px);
        flex: 1 1 calc(33.33% - 20px);
    }

    #homepage-content-cont .section+.section {
        margin-left: 30px;
    }
}

#join-team-side{
    background-color: #f18f01;
    background-image: url(../images/bg-bubbles.svg);
    background-position: calc(100% - -4px) -18px;
    background-size: 373px 181px;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 35px 35px 20px;
    box-sizing: border-box;   
    text-align: center; 
}

#join-team-side p.title{
    font-weight: 700;
    margin: 0;
    font-size: 22px;
}

#join-team-side p:not(.title){
    font-size: 19px;
    line-height: 26px;
    max-width: 275px;
    margin-right: auto;
    margin-left: auto;
}


#trip-planner-widget {
    background-color: #7eb928;
    background-image: url(../images/bg-bubbles.svg);
    background-position: calc(100% - 15px) 40px;
    background-size: 373px 181px;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 35px;
    box-sizing: border-box;
}

#trip-planner-widget .logo-cont .bata-logo {
    background-image: url(../images/logo-plain-white.svg);
    width: 160px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

#trip-planner-widget .logo-cont .logo-title {
    font-size: 38px;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    padding-right: 8px;
}

@media screen and (min-width: 850px) {
    #trip-planner-widget .logo-cont .logo-title {
        font-size: 45px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

#trip-planner-widget>p {
    font-size: 19px;
    line-height: 1.2em;
    font-weight: 400;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

#trip-planner-widget label,
#trip-planner-widget input[type=text] {
    display: block;
}

#trip-planner-widget label {
    font-size: 18px;
    line-height: 1em;
    font-weight: 500;
}

#trip-planner-widget input[type=text] {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    height: 47px;
    border-radius: 3px;
    border: none;
}


#maps-schedules-cont {
    background-color: #1dafec;
    background-image: url(../images/bg-bubbles.svg);
    background-position: center calc(100% - 42px);
    background-size: 373px 181px;
    background-repeat: no-repeat;
    color: #ffffff;
}

#maps-schedules-cont .image-cont {
    background: url(../images/maps-schedules-bg.jpg) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 0px;
    padding-top: 62%;
}

#maps-schedules-cont .content-cont {
    padding: 30px 35px;
}

#maps-schedules-cont .content-cont>.title {
    font-size: 22px;
    line-height: 1em;
    font-weight: 700;
}

#maps-schedules-cont .content-cont>p {
    font-size: 16px;
    line-height: 1.4em;
    margin-top: 15px;
    margin-bottom: 20px;
}

#maps-schedules-cont .content-cont>select {
    display: block;
    width: 100%;
    height: 47px;
    box-sizing: border-box;
    border: none;
    border-radius: 3px;
    margin-bottom: 20px;
}


#homepage-links-cont {
    background-color: #ffffff;
    padding: 40px 30px;
    box-shadow: 0px 0px 10px -4px #555555;
}

#homepage-links-cont ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#homepage-links-cont ul li {
    display: inline-block;
    vertical-align: top;
    flex: 1 1 auto;
    box-sizing: border-box;
    text-align: center;
    flex: 1 1 50%;
    max-width: 50%;
    border-top: 1px solid #e8e9e9;
    border-right: 1px solid #e8e9e9;
    box-sizing: border-box;
}

@media screen and (max-width: 499px),
screen and (min-width: 1050px) {

    #homepage-links-cont ul li:nth-child(1),
    #homepage-links-cont ul li:nth-child(2) {
        border-top: none;
    }

    #homepage-links-cont ul li:nth-child(2n) {
        border-right: none;
    }

    #homepage-links-cont ul li:nth-child(1) a,
    #homepage-links-cont ul li:nth-child(2) a {
        padding-top: 0px;
    }

    #homepage-links-cont ul li:nth-last-child(1) a,
    #homepage-links-cont ul li:nth-last-child(2) a {
        padding-bottom: 0px;
    }
}

#homepage-links-cont ul li a {
    font-size: 17px;
    line-height: 1em;
    font-weight: 700;
    text-decoration: none;
    color: #000000;
    padding-top: 30px;
    padding-bottom: 40px;
    display: block;
}

#homepage-links-cont ul li a:hover {
    opacity: .75;
}

#homepage-links-cont ul li a .icon-cont {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

#homepage-links-cont ul li a .icon-cont img {
    max-height: 80%;
}

#homepage-links-cont ul li a .icon-title {
    font-size: 17px;
    line-height: 1.2em;
    font-weight: 700;
    max-width: 90px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 500px) and (max-width: 1049px) {
    #homepage-links-cont ul li {
        border-top: 1px solid #e8e9e9;
        border-right: 1px solid #e8e9e9;
        flex: 1 1 33.33%;
    }

    #homepage-links-cont ul li:nth-child(1),
    #homepage-links-cont ul li:nth-child(2),
    #homepage-links-cont ul li:nth-child(3) {
        border-top: none;
    }

    #homepage-links-cont ul li:nth-child(3n) {
        border-right: none;
    }

    #homepage-links-cont ul li:nth-child(1) a,
    #homepage-links-cont ul li:nth-child(2) a,
    #homepage-links-cont ul li:nth-child(3) a {
        padding-top: 0px;
    }

    #homepage-links-cont ul li:nth-last-child(1) a,
    #homepage-links-cont ul li:nth-last-child(2) a,
    #homepage-links-cont ul li:nth-last-child(3) a {
        padding-bottom: 0px;
    }
}

#community-cont {
    background: url(../images/homepage-about-bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    height: 450px;
    position: relative;
    color: #ffffff;
}

#community-cont .positioner {
    width: 100%;
    box-sizing: border-box;
    left: 0px;
}

#community-cont .title {
    font-size: 34px;
    line-height: 1em;
    font-weight: 700;
    margin: 0px;
}

#community-cont p {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1050px) {
    #community-cont {
        height: 500px;
    }
}


#homepage-social-cont {
    padding-top: 20px;
    padding-bottom: 20px;
}

#homepage-social-cont ul {
    margin: 0;
    padding: 0px;
    display: flex;
    position: relative;
}

#homepage-social-cont ul li {
    display: inline-block;
    vertical-align: top;
    flex: 1 1 100%;
    min-width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px -4px #555555;
    position: relative;
}

#homepage-social-cont ul li+li {
    margin-left: 30px;
}

#homepage-social-cont ul li .profile-cont {
    padding: 15px 20px;

}

#homepage-social-cont ul li .profile-cont a {
    color: #000000;
}

#homepage-social-cont ul li .profile-cont a:hover {
    opacity: .8;
}

#homepage-social-cont ul li .logo {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-image: url(../images/logo-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 33px 14px;
    margin-right: 10px;
}

#homepage-social-cont ul li .profile {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
}

#homepage-social-cont ul li .iframe-cont {
    overflow: hidden;
}

#homepage-social-cont ul li .iframe-cont .padding-cont,
#homepage-social-cont ul li .image-cont {
    display: block;
    height: 0px;
    padding-top: 75%;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    position: relative;
}

#homepage-social-cont ul li .iframe-cont .padding-cont {
    background-color: #000000;
}

#homepage-social-cont ul li .iframe-cont iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    max-width: 100%;
    /*max-height: 100%;*/
}

#homepage-social-cont ul li .image-cont.cover {
    background-size: cover;
}

#homepage-social-cont ul li .text-cont {
    padding: 20px 30px 60px 30px;
}

#homepage-social-cont ul li .message-cont {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3em;
    word-break: break-word;
}

#homepage-social-cont ul li .info-cont {
    position: absolute;
    bottom: 25px;
    box-sizing: border-box;
    width: 100%;
    left: 0px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
}

#homepage-social-cont ul li .info-cont .date {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 18px);
    padding-right: 10px;
    box-sizing: border-box;
}

#homepage-social-cont ul li .info-cont:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url(../images/icon-facebook.svg) center center no-repeat;
    background-size: contain;
}

#homepage-social-cont .scroll-wrapper {
    overflow: hidden;
}

@media screen and (min-width: 650px) {
    #homepage-social-cont ul li {
        flex: 1 1 50%;
        min-width: calc(50% - 15px);
    }
}

@media screen and (min-width: 769px) {
    #homepage-social-cont {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1050px) {
    #homepage-social-cont ul li {
        flex: 1 1 33.33%;
        min-width: calc(33.33% - 20px);
    }
}


#content #trip-planner {
    margin: 0 0 10px 10px;
    float: right;
}


#new-to-bata-widget-thumb {
    display: block;
    width: 24.2%;
    max-width: 83px;
    height: auto;
    position: absolute;
    right: 3.5%;
    top: 24px;
}

#new-to-bata-widget h3 {
    margin: 0;
    padding: 10px 0 4px 14px;
    color: white;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

#new-to-bata-widget-links {
    margin: 0;
    padding: 0 107px 8px 14px;
    list-style-type: none;
    display: block;
    /*	height: 72px;*/
    overflow: hidden;
    background-color: #25272b;
}

#new-to-bata-widget-links li {
    display: block;
    float: none;
    margin: 0;
    line-height: 18px;
}

#new-to-bata-widget-links li a {
    background-image: url(../images/img_green-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2dbef5;
    text-decoration: none;
    padding-left: 8px;
}

#new-to-bata-widget-links li a:hover {
    color: #c3cf21;
}

/*#new-to-bata-widget-controls {
	position: absolute;
	width: 343px;
	height: 76px;
	top: 117px;
	left: 0;
}*/

#new-to-bata-widget-controls {
    position: relative;
    /*height: 78px;*/
    margin-top: 13px;
}

#new-to-bata-widget-controls-left,
#new-to-bata-widget-controls-right {
    position: absolute;
    top: 21px;
    display: block;
    width: 25px;
    height: 34px;
}

#new-to-bata-widget-controls-left {
    left: 6px;
}

#new-to-bata-widget-controls-right {
    right: 6px;
}

.hide-scroll-controls #new-to-bata-widget-controls-left,
.hide-scroll-controls #new-to-bata-widget-controls-right {
    display: none;
}

#new-to-bata-widget-controls-left img,
#new-to-bata-widget-controls-right img {
    display: block;
    width: 25px;
    height: 34px;
    background-image: url(../images/img_new-to-bata-controls.png);
}

#new-to-bata-widget-controls-left img {
    background-position: 0 0;
}

#new-to-bata-widget-controls-left:hover img {
    background-position: 0 -34px;
}

#new-to-bata-widget-controls-right img {
    background-position: -25px 0;
}

#new-to-bata-widget-controls-right:hover img {
    background-position: -25px -34px;
}

#new-to-bata-widget-icons {
    /*position: absolute;*/
    /*	left: 30px;
	top: 10px;*/
    /*width: 283px;*/
    /*height: 66px;*/
    overflow: hidden;
}

#new-to-bata-widget-icons ul {
    /*list-style-type: none;
	position: absolute;
	left: 0;
	top: 0;*/

    height: 66px;
    width: auto;
    margin: 0px auto 0 auto;
    padding: 0;
    list-style-type: none;
}

#new-to-bata-widget-icons li {
    display: block;
    float: left;
    width: 68px;
    height: 66px;
    text-align: center;
    margin: 0;
    font-size: 11px;
    line-height: 13px;
}

#new-to-bata-widget-icons svg {
    display: block;
    width: 32px;
    height: 32px;
    margin: auto;
    /*background-image: url(../images/img_new-to-bata-icons.png);*/
    background-size: 32px;
    background-position: center center;
    fill: #ffffff;
}

#new-to-bata-widget-icons a {
    display: block;
    width: 58px;
    height: 55px;
    color: white;
    text-decoration: none;
    padding: 0 5px;
}

#new-to-bata-widget-icons a:hover {
    color: #c3cf21;
}

#new-to-bata-widget-icons a .icon1 .fill,
#new-to-bata-widget-icons a .icon2 .fill,
#new-to-bata-widget-icons a .icon3 .fill,
#new-to-bata-widget-icons a .icon4 .fill {
    fill: #ffffff;
}

#new-to-bata-widget-icons a .icon1 .stroke,
#new-to-bata-widget-icons a .icon2 .stroke,
#new-to-bata-widget-icons a .icon3 .stroke,
#new-to-bata-widget-icons a .icon4 .stroke {
    stroke: #ffffff;
}

#new-to-bata-widget-icons a:hover .icon1 .fill,
#new-to-bata-widget-icons a:hover .icon2 .fill,
#new-to-bata-widget-icons a:hover .icon3 .fill,
#new-to-bata-widget-icons a:hover .icon4 .fill {
    fill: #c3cf21;
}

#new-to-bata-widget-icons a:hover .icon1 .stroke,
#new-to-bata-widget-icons a:hover .icon2 .stroke,
#new-to-bata-widget-icons a:hover .icon3 .stroke,
#new-to-bata-widget-icons a:hover .icon4 .stroke {
    stroke: #c3cf21;
}

.service-alerts-widget {
    /*width: 242px;*/
    height: auto;
    /*background-image: url(../images/bg_service-alerts-widget.png);*/
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.service-alerts-widget h3 {
    margin: 0;
    color: #25272b;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.service-alerts-widget a.blue-button:hover {
    background-position: 0 -22px;
}

.service-alerts-widget form a.blue-button {
    margin: 10px auto 10px auto;
}

.service-alerts-widget ul {
    display: block;
    margin: 0;
    padding: 0 14px;
    list-style-type: none;
}

.service-alerts-widget li {
    display: block;
    float: none;
    margin: 0 0 2px 0;
}

.service-alerts-widget li .type1 {
    background-position: 0 0;
}

.service-alerts-widget li .type2 {
    background-position: 0 -23px;
}

.service-alerts-widget li .type3 {
    background-position: 0 -46px;
}


.service-alerts-widget h4 {
    margin: 0;
    /*padding: 14px 0 2px 14px;*/
    color: #2dbef5;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.service-alerts-widget p {
    margin: 0;
    font-size: 11px;
    color: #000;
}

.service-alerts-choice-inputs {
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 0 14px;
    color: #000000;
}

@media screen and (min-width: 995px) {
    #new-to-bata-widget {
        width: 343px;
        height: auto;
        background-image: url(../images/bg_new-to-bata-widget.png);
        overflow: hidden;
        position: relative;
    }
}

iframe.directions {
    border: 0;
    width: 100%;
    height: 400px;
}

@media (min-width: 800px) {
    iframe.directions {
        height: 600px;
    }
}

.form-button.passage {
    width: 165px;
    height: 42px;
    background-image: url(../images/logo-journey-full-white.png);
    background-size: 155px 34px;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}

#interior-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 225px;
    position: relative;
}

@media screen and (min-width: 769px) {
    #interior-hero {
        height: 300px;
        padding-top: 0px;
    }
}

/*@media screen and (min-width: 1200px){*/
#interior-hero {
    height: 0px;
    padding-top: 25%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#interior-hero *,#interior-hero *:before,#interior-hero *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

#interior-hero h1{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 50px 115px;
    background: rgba(0,0,0,.5);
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 100%);
    margin: 0;
    font-size: 70px;
    text-transform: uppercase;
}

#interior-hero h1 > div{
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1125px) {
    #interior-hero h1{
        font-size: 38px;
    }

    #interior-hero {
        padding-top: 30%;
    }
}

@media screen and (max-width: 768px) {
    #interior-hero h1{
        padding: 50px 10px 30px;
        font-size: 30px;
    }

    #interior-hero {
        padding-top: 40%;
    }
}

@media screen and (max-width: 470px) {
    #interior-hero h1{
        font-size: 20px;
    }

    #interior-hero {
        padding-top: 50%;
    }
}

/*}*/
/*@media screen and (min-width: 2001px) {
    #interior-hero {
        height: 500px;
        padding-top: 0px;
    }
}*/

#main-content-cont {
    padding-top: 25px;
    padding-bottom: 25px;
}

#main-content,
#side-cont {
    box-sizing: border-box;
    clear: both;
}

.wysiwyg {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 400;
}

.wysiwyg a {
    color: #7eb928;
    font-weight: 700;
    text-decoration: none;
}

.wysiwyg a:hover {
    text-decoration: underline;
}

/* May be temp fix for all the added p tags.. */
.wysiwyg p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.wysiwyg img,
.wysiwyg iframe,
.wysiwyg table {
    max-width: 100%;
}

.wysiwyg img {
    height: auto !important;
}

#side-cont>div {
    margin-bottom: 30px;
}

#subnav {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px -4px #555555;
}

#subnav {
    margin: 0;
    padding: 30px;
}

#subnav li {
    list-style: none;
    display: block;
    border-bottom: 1px solid #e8e9e9;
    padding-top: 15px;
    padding-bottom: 15px;
}

#subnav li:last-child {
    border-bottom: none;
}

#subnav li ul {
    margin-top: 15px;
    margin-bottom: -15px;
    border-top: 1px solid #e8e9e9;
}

#subnav li a {
    display: block;
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
    color: #010101;
    cursor: pointer;
    text-decoration: none;
    padding-left: 20px;
    position: relative;
}

#subnav li a:hover {
    color: #7eb928;
}

#subnav li a>span {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 0px;
    top: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border: 2px solid #7eb928;
    box-sizing: border-box;
    border-radius: 50%;
}

#subnav li a>span:after {
    content: '';

    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    border-radius: 50%;
}

#subnav li a.on>span:after {
    background-color: #7eb928;
}

@media screen and (min-width: 769px) {
    #main-content-cont {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    #main-content,
    #side-cont {
        display: inline-block;
        vertical-align: top;

    }

    #side-cont {
        width: 250px;
    }

    #main-content {
        width: calc(100% - 250px);
        padding-right: 35px;
    }
}

@media screen and (min-width: 1050px) {
    #side-cont {
        width: 370px;
    }

    #main-content {
        width: calc(100% - 370px);
    }
}


.contact-form {}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 15px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=password],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form select,
.contact-form textarea {
    display: block;
    border: 1px solid #e2e1de;
    border-radius: 2px;
    width: 100%;
    max-width: 670px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=password],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form select {
    height: 45px;
}

.contact-form label {
    display: block;
    font-size: 18px;
    line-height: 1em;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-form .g-recaptcha {
    margin-bottom: 20px;
}

@media (min-resolution: 134dpi),
(min-device-pixel-ratio: 1.4),
(min--moz-device-pixel-ratio: 1.4),
(-o-min-device-pixel-ratio: 1.4),
(-webkit-min-device-pixel-ratio: 1.4) {
    .form-button.passage {
        background-image: url(../images/logo-journey-full-white.png);
        background-size: 155px 34px;
    }
}

#hc_sticky{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    padding: 13px 15px;
    box-shadow: 0 0 15px rgba(168 ,168 ,168 ,.5);
    z-index: 9000;
    cursor: pointer;
}


@media screen and (max-width: 768px){
    #hc_sticky{
        width: 100%;
        bottom: 68px;
        right: auto;
        left: 0;
        text-align: center;
        padding: 9px 0;
        box-shadow: none;
        font-size: 14px;
        border-top: 1px solid #fff;
    }

    #hc_sticky.inactive{
        display: none;
    }
}