body {
    font-family: 'Roboto', sans-serif;
}


/*
.picture {
    position: relative;
}

.picture img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    max-height: 100vh;
}
*/
.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.flex > .flex-child,
.flex.flex-child {
    -ms-flex: 1;
    flex: 1;
}

.section {
    position: relative;
}
#fullpage {
    overflow: hidden;
}

/* sign-up-pop-up */
.sign-up-pop-up {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 4000;
    background: rgba(255, 255, 255, 0.9);
}
#sign-up-pop-up {}
#sign-up-pop-up #sign-up-pop-up-close i {
	position: absolute;
	text-align: center;
	top: 20px;
	right: 20px;
	font-size: 32px;
	background: #ffffff;
	border-radius: 50%;
	padding: 5px 8px;
	color: #ce0c34;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
	cursor: pointer;
    display: block;
    z-index: 10;
}

/* sign-up-pop-up */


/* loader */
.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f1013;
    z-index: 999999;
}

#wrapper {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#animation {
    animation: element ease-in-out 5s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: element ease-in-out 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: element ease-in-out 5s;
    -moz-animation-iteration-count: infinite;
    -o-animation: element ease-in-out 5s;
    -o-animation-iteration-count: infinite;
    -ms-animation: element ease-in-out 5s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes element {
    0% {
        fill: red;
        transform: scaleX(0.8) scaleY(0.8);
    }
    25% {
        fill: orange;
        transform: scaleX(1) scaleY(1);
    }
    50% {
        fill: yellow;
        transform: scaleX(0.8) scaleY(0.8);
    }
    75% {
        fill: violet;
        transform: scaleX(1) scaleY(1);
    }
    100% {
        fill: red;
        transform: scaleX(0.8) scaleY(0.8);
    }
}

/* loader */


/* modal */
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.5);
}
.modal iframe {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal .modal-header {
	position: absolute;
	left: 0px;
	top: 0px;
	color: #ffffff;
	width: 100%;
	text-align: center;
	z-index: 5;
	min-height: 16.43px;
	padding: 10px;
	border-bottom: none;
	background: rgba(0,0,0,0.2);
}
.modal .modal-header a,
.modal .modal-header a:hover
{
    text-decoration: none;
    color: #ffffff;
}
.modal .modal-header .close {
	float: none;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	text-shadow: none;
	filter: alpha(opacity=20);
	opacity: 1;
}
.modal .modal-header .close:hover {
	color: #ffffff;
}
/* modal */

/* pop up style */

.pop_up_wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    text-align: center;
}

.pop_up_wrapper .pop_up_box {
    width: 95%;
    max-width: 800px;
    background: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-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%);
    margin: auto;
    padding: 2em 1em;
    display: table;
}

.pop_up_wrapper .pop_up_box > div {
    display: table-cell;
    vertical-align: middle;
}

.pop_up_wrapper .pop_up_box .space {
    padding: 15px 0px;
}

.pop_up_wrapper .pop_up_box .space img {
    max-height: 100%;
}

.pop_up_wrapper .pop_up_box p {
    font-size: 12pt;
}

.pop_up_wrapper .pop_up_box input {
    border: none;
    background: none;
    color: #000000;
    border-bottom: solid 1px #000000;
    margin-bottom: 10px;
    padding: 5px 15px;
    text-align: center;
    outline: none;
}

.pop_up_wrapper .pop_up_box button {
    border: solid 1px transparent;
    background: #8a8a8a;
    color: #ffffff;
    padding: 5px 15px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.pop_up_wrapper .pop_up_box button:hover,
.pop_up_wrapper .pop_up_box button:active,
.pop_up_wrapper .pop_up_box button:focus {
    border: solid 1px #8a8a8a;
    background: #ffffff;
    color: #000000;
}

.pop_up_wrapper .pop_up_box .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #cccccc;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.pop_up_wrapper .pop_up_box .close-btn:hover {
    color: #000000;
}

.pop_up_wrapper .pop_up_box .pop-up-input-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 230px;
}

.pop_up_wrapper .pop_up_box .pop-up-input-wrapper .email-loader {
    right: -20px;
}


/* thanku pop up */

.pop_up_wrapper .form-thank-you-wrapper {
    position: absolute;
    background: #ffffff;
}

.pop_up_wrapper .form-thank-you-wrapper .thank-you-content {
    display: block !important;
}
/* thank you style */

.form-thank-you-wrapper {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 80%;
    /*    height: 60%;*/
    margin: auto;
    padding: 5em;
    max-width: 800px;
    max-height: 400px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    color: #000000;
    text-align: center;
}

.form-thank-you-wrapper .close-btn {
    width: 23px;
    height: 23px;
    border: solid 1px #333333;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.form-thank-you-wrapper .close-btn span {
    color: #333333;
}

.form-thank-you-wrapper .thank-you-content {}

.form-thank-you-wrapper .thank-you-content .first-slide-social {
    margin-top: 20px !Important;
}

.form-thank-you-wrapper .thank-you-content h4 {
    font-size: 14px;
    line-height: 20px;
}


/* shre btn */

.form-thank-you-wrapper .social-share {}

.form-thank-you-wrapper .social-share ul {
    margin: 0;
    padding: 0;
}

.form-thank-you-wrapper .social-share ul li {
    list-style: none;
    display: inline-block;
    margin: 0px 4px;
    margin-bottom: 5px;
}

.form-thank-you-wrapper .social-share ul li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 2px 30px;
    border-radius: 2px;
}

.form-thank-you-wrapper .social-share ul li:nth-child(1) a {
    background: #3b5998;
}

.form-thank-you-wrapper .social-share ul li:nth-child(2) a {
    background: #55acee;
}

.form-thank-you-wrapper .social-share ul li:nth-child(3) a {
    background: #0077b5;
}

.form-thank-you-wrapper .social-share ul li:nth-child(4) a {
    background: #dd4b39;
}

/* pop up style */

.email-loader:before,
.email-loader:after,
.email-loader {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: load7 1.8s infinite ease-in-out;
}

.email-loader {
    color: #333333;
    font-size: 3px;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
    position: absolute;
    top: 5px;
    right: -40px;
}

.email-loader:before {
    left: -15px;
    animation-delay: -0.32s;
}

.email-loader:after {
    left: 15px;
}

.email-loader:before,
.email-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

/* heading bar */

.heading-bar-line {
    animation: heading-bar ease-in-out 0.5s;
    animation-iteration-count: 1;
    transform-origin: 0% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: heading-bar ease-in-out 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 0% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: heading-bar ease-in-out 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 0% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: heading-bar ease-in-out 0.5s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 0% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: heading-bar ease-in-out 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 0% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}

@keyframes heading-bar {
    0% {
        transform: scaleX(0.00);
    }
    100% {
        transform: scaleX(1.00);
    }
}


/* header */

.site-header {
    position: absolute;
    top: 25px;
    left: 40px;
    z-index: 100;
}

.site-logo {}

.site-logo img {
    max-width: 150px;
    transition: all ease 1s;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
}


/* header */


/* header social */

#header_social{
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
}
#header_social2 {
	display: none;
	position: absolute;
	bottom: 20px;
	width: 90%;
	left: 0;
	right: 0;
	margin: auto;
}
#header_social2 ul {
	text-align: center;
}
#header_social2 ul li {
    margin: 0;
}
#header_social2 ul li:nth-child(1) a, #header_social2 ul li:nth-child(2) a {
    max-height: 14px;
	padding: 0;
	border-radius: 0;
	border: solid 1px transparent;
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
	-ms-transition: all ease 1s;
	-o-transition: all ease 1s;
}

#header_social ul li {
    margin: 0;
    margin-right: 3px;
}

#header_social ul li span, #header_social2 ul li span {
    border: solid 1px rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
    width: 25px;
    height: 25px;
    padding: 5px 0px;
    transition: all ease 1s;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
}

#header_social ul li:hover span, #header_social2 ul li:hover span {
    border: solid 1px #cccccc;
    color: #ffffff;
}

.section_content #first-slide-form .first-slide-social {
    margin-top: 70px;
}

.first-slide-social ul {
    margin: 0;
    padding: 0;
}

.first-slide-social ul li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
}

.first-slide-social ul li a {
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

.first-slide-social ul li span {
    width: 35px;
    height: 35px;
    padding: 9px 0px;
    border: solid 1px #ffffff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
}

.first-slide-social ul li:hover span {
    background: #000000;
    color: #ffffff;
}

.first-slide-social ul li:nth-child(1) a img,
.first-slide-social ul li:nth-child(2) a img {
    max-height: 17px;
    margin-bottom: 4px;
}

.first-slide-social ul li:nth-child(1) a,
.first-slide-social ul li:nth-child(2) a {
    padding: 3px 15px;
    border-radius: 25px;
    border: solid 1px transparent;
    transition: all ease 1s;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
}

.first-slide-social ul li:nth-child(1) a,
.first-slide-social ul li:nth-child(2) a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    border: solid 1px rgba(255, 255, 255, 0.5);
}

.first-slide-social ul li:nth-child(1):hover a,
.first-slide-social ul li:nth-child(2):hover a {
    background: #000000;
    border: solid 1px #ffffff;
    color: #333333;
}


/* header social */


/* section one */

.section-one-wrapper {
    /*    background: #c6c6c6;*/
    color: #ffffff;
    position: relative;
}

.section-one-wrapper {
    background-image: url(../images/slide-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-one-wrapper .fp-tableCell {
    position: relative;
    overflow: hidden;
}

.section-one-wrapper .section-one-slider {
    position: relative;
}

.section-one-wrapper .sign-up-now {
    position: absolute;
    bottom: 65px;
    left: 0px;
    right: 0;
    margin: auto;
    width: 150px;
    text-align: center;
}

.section-one-wrapper .sign-up-now a,
.section-one-wrapper .sign-up-now button
{
    background: #CE0C34;
    color: #ffffff;
    font-weight: bold;
    padding: 7px 25px;
    border-radius: 25px;
    text-decoration: none;
    outline: none;
    border: none;
}

.section-one-wrapper .section-one-slider .section-one-slider-item {
    display: inline-block;
    text-align: center;
    width: 300px;
    outline: none;
    position: relative;
}

.section-one-wrapper .section-one-slider .section-one-slider-item img {
    max-width: 100%;
}

.section-one-wrapper .section-one-slider button {
    background: red;
    border: none;
    text-indent: 1000px;
    width: 12px;
    height: 18px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    outline: none;
    z-index: 5;
}

.section-one-wrapper .section-one-slider .slick-arrow {}

.section-one-wrapper .section-one-slider .slick-next {
    left: -250px;
    background: url(../images/slide-arr-l.png) no-repeat;
    background-size: 12px 18px;
}

.section-one-wrapper .section-one-slider .slick-prev {
    right: -250px;
    background: url(../images/slide-arr-r.png) no-repeat;
    background-size: 12px 18px;
}

.section-one-wrapper .boltt {
    max-width: 600px;
    margin: auto;
    position: relative;
    z-index: 3;
}

.section-one-wrapper .boltt img {
    width: 100%;
}

.section-one-wrapper .boltt h2 {
    font-size: 18pt;
}

.section-one-wrapper #pElementWrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.section-one-wrapper #pElementWrapper #pElementOne,
.section-one-wrapper #pElementWrapper #pElementTwo,
.section-one-wrapper #pElementWrapper #pElementThree,
.section-one-wrapper #pElementWrapper #pElementFour,
.section-one-wrapper #pElementWrapper #pElementFive {
    top: 45%;
    transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -o-transform: translateY(-45%);
}

.section-one-wrapper #pElementWrapper #pElementOne {
    margin-top: -100px;
    left: -80px;
}

.section-one-wrapper #pElementWrapper #pElementTwo {
    left: 10%;
}

.section-one-wrapper #pElementWrapper #pElementThree {
    margin: auto;
    left: 0;
    right: 30%;
}

.section-one-wrapper #pElementWrapper #pElementFour {
    right: 35%;
    margin-top: 7%;
}

.section-one-wrapper #pElementWrapper #pElementFive {
    margin-top: -100px;
    right: -100px;
}

.boltt-parallax-items-one {
    width: 100%;
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* -webkit-transform: translateY(-50%); */
    /* -moz-transform: translateY(-50%); */
    /* -ms-transform: translateY(-50%); */
    /* -o-transform: translateY(-50%); */
}

.boltt-parallax-items-one .parallax-item {
    float: left;
    position: absolute;
    /*
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
*/
}

.parallax-item.one {
    /*    left: -120px;*/
    width: 270px;
}

.parallax-item.two {
    width: 240px;
    /*
    left: 150px;
    margin-top: 80px;
*/
    z-index: 5;
}

.parallax-item.three {
    width: 145px;
    /*
    left: 0;
    right: 70px;
    margin: 40px auto auto auto;
*/
}

.parallax-item.four {
    z-index: 5;
    width: 120px;
    /*
    left: 380px;
    right: 0;
    margin: 145px auto auto auto;
*/
}

.parallax-item.five {
    /*    right: -100px;*/
    width: 470px;
}

.parallax-item img {
    max-width: 100%;
}


/* section two */

.section-two-wrapper {
    position: relative;
}
.section-two-wrapper .video {}
#myVideo2Poster {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/video_bg_1.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 5;
}
#myVideo3Poster {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/boltt-teaser.jpg);
    background-position: center center;
    background-size: cover;
    z-index: 5;
}

.section-two-wrapper .mute-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 15;
    opacity: 0.5;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.section-two-wrapper .mute-btn button {
    display: inline-block;
    outline: none;
}

.section-two-wrapper .mute-btn:hover {
    opacity: 1;
}

.section-two-wrapper #play {
    /*
    position: absolute;
    z-index: 100;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.4);
    font-size: 36pt;
    border-radius: 50%;
    border: solid 2px #ffffff;
    padding: 0px 24px;
*/
}

.section-two-wrapper .mute-btn #pause, .section-two-wrapper .mute-btn #pauseMobile, #pause-three {
    background: none;
    border: none;
    font-size: 22pt;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    top: 10px;
    margin-right: 5px;
    color: #ffffff;
}


/*
#pause,
#play {
    display: none;
}
*/

.section-two-wrapper .mute-btn #mute, .section-two-wrapper .mute-btn #muteMobile, #mute-three {
    background: url(../images/volume-unmute.png);
}

.section-two-wrapper .mute-btn #unmute, .section-two-wrapper .mute-btn #unmuteMobile, #unmute-three {
    background: url(../images/volume-mute.png);
}

.section-two-wrapper .mute-btn #mute,
.section-two-wrapper .mute-btn #unmute,
.section-two-wrapper .mute-btn #muteMobile,
.section-two-wrapper .mute-btn #unmuteMobile,
.mute-btn #mute-three,
.mute-btn #unmute-three{
    background-repeat: no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    border: none;
}

.section-two-wrapper {
    position: relative;
    background: #000000;
}

.section-two-wrapper video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 600px;
    display: block;
}
.section-two-wrapper #myVideo, .section-two-wrapper #playMobile, #button-mobile {
    display: none;
}
#myVideoText {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 5;
    opacity: 1;
    color: #ffffff;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.section-two-wrapper [poster] {
    background-size: 100% 100%;
}

.play-icon-hover {
    width: 150px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 10;
    left: 0;
    right: 0;
    margin: auto;
}

.play-icon-hover svg {
    max-width: 180px;
    stroke-width: 1px;
}

.play-icon-hover svg:hover {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    /*
    stroke: #CE0C34;
*/
    animation: dash 1.2s ease-out forwards;
}

@keyframes dash {
    from {
        fill: rgba(255, 255, 255, 0.5);
    }
    to {
        fill: rgba(206, 12, 52, 1);
        stroke-dashoffset: 500;
    }
}


/* section three */

.section-three-wrapper {
    background-image: url(../images/sec-3-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
}

.section-three-wrapper .section-three-content {
    width: 50%;
    position: relative;
    left: 15%;
}

.section-three-wrapper .section-three-content .heading-bar {
    width: 80px;
    height: 5px;
    background: #ffffff;
}

.section-three-wrapper .section-three-content h1 {
    display: inline-block;
    font-weight: medium;
}

.section-three-wrapper .section-three-content .line {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.section-three-wrapper .section-three-content p {
    width: 80%;
    font-weight: 500;
}


/* section fourth */

.section-fourth-wrapper {
    background: #f7f7f7;
}

.section-fourth-wrapper .section-fourth-content {
    text-align: center;
}

.section-fourth-wrapper .section-fourth-content .section-fourth-left {
    max-width: 365px;
    margin: auto;
}

.section-fourth-wrapper .section-fourth-content .section-fourth-left h1 {
    text-align: left;
    font-size: 36pt;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
}

.section-fourth-wrapper .section-fourth-content .section-fourth-left p {
    text-align: justify;
    font-size: 9pt;
}

.section-fourth-wrapper .section-fourth-content .heading-bar {
    width: 80px;
    height: 5px;
    background: #CE0C34;
    margin-bottom: 10px;
}

.section-fourth-wrapper .section-fourth-content .line {
    width: 100%;
    height: 1px;
    background: #666666;
    display: inline-block;
}

.section-fourth-wrapper .section-fourth-content .section-fourth-image {}

.section-fourth-wrapper .section-fourth-content .section-fourth-image img {
    max-width: 100%;
    padding-top: 8%;
}


/* section fifth */

.section-fifth-wrapper {
    background-image: url(../images/sec-5-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    overflow: hidden;
}

.section-fifth-wrapper .fp-tableCell {
    position: relative;
    overflow: hidden;
}

.section-fifth-wrapper .section-fifth-item {
    position: absolute;
}

.section-fifth-wrapper .section-fifth-item img {
    width: 100%;
}

.section-fifth-wrapper .section-fifth-item.shoe,
#section5shoe {
    width: 270px;
    top: -60px;
}

#section5shoe img {
    animation-duration: 8;
    -webkit-animation-duration: 8;
    -moz-animation-duration: 8;
    -ms-animation-duration: 8;
    -o-animation-duration: 8;
    animation-direction: reverse;
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
    -ms-animation-direction: reverse;
    -o-animation-direction: reverse;
}

.section-fifth-wrapper .section-fifth-item.band,
#section5band {
    top: 35%;
    left: 25%;
    width: 250px;
}

.section-fifth-wrapper .section-fifth-item.pod,
#section5pod {
    right: 15%;
    bottom: 10px;
    width: 170px;
}

#section5pod img {
    animation-duration: 13s;
    -webkit-animation-duration: 13s;
    -moz-animation-duration: 13s;
    -ms-animation-duration: 13s;
    -o-animation-duration: 13s;
    animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
    -moz-animation-direction: alternate-reverse;
    -ms-animation-direction: alternate-reverse;
    -o-animation-direction: alternate-reverse;
}

.section5move {
    animation: band-move ease-in-out 10s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: band-move ease-in-out 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: band-move ease-in-out 10s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: band-move ease-in-out 10s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: band-move ease-in-out 10s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes band-move {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    10% {
        transform: translate(4px, -3px) rotate(3deg);
    }
    30% {
        transform: translate(-3px, 5px) rotate(-3deg);
    }
    50% {
        transform: translate(-8px, -10px) rotate(0deg);
    }
    70% {
        transform: translate(7px, 0px) rotate(3deg);
    }
    90% {
        transform: translate(-5px, -6px) rotate(5deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.section-fifth-wrapper .section-fifth-content {
    width: 50%;
    position: relative;
    right: 0;
    float: right;
}

.section-fifth-wrapper .section-fifth-content .heading-wrapper {}

.section-fifth-wrapper .section-fifth-content .heading-bar {
    width: 80px;
    height: 5px;
    background: #ffffff;
}

.section-fifth-wrapper .section-fifth-content .heading-wrapper h1 {
    /*    display: inline-block;*/
    font-weight: medium;
    font-size: 36pt;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.section-fifth-wrapper .section-fifth-content .heading-wrapper p {
    /*
    width: 80%;
*/
    font-weight: 500;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.section-fifth-wrapper .section-fifth-content .heading-wrapper .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    display: inline-block;
}

.section-fifth-items {}

.section-fifth-items ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.section-fifth-items ul li {
    list-style: none;
    display: block;
    margin-bottom: 15px;
}

.section-fifth-items ul li .fifth-item-icon {
    width: 52px;
    float: left;
    margin-right: 20px;
}

.section-fifth-items ul li .fifth-item-icon img {
    width: 100%;
    padding: 3px;
}

.section-fifth-items ul li h5 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 3px;
}

.section-fifth-items ul li p {
    font-weight: normal;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}


/* section six */

.section-six-wrapper {
    background-image: url(../images/sec-6-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
}

.section-six-wrapper .section-six-content {
    width: 50%;
    position: relative;
    right: 0;
    float: right;
}

.section-six-wrapper .section-six-content .heading-wrapper {
    margin-left: 70px;
}

.section-six-wrapper .section-six-content .heading-bar {
    width: 80px;
    height: 5px;
    background: #ffffff;
}

.section-six-wrapper .section-six-content .heading-wrapper h1 {
    display: inline-block;
    font-weight: medium;
    font-size: 36pt;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.section-six-wrapper .section-six-content .heading-wrapper p {
    width: 80%;
    font-weight: 500;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.section-six-wrapper .section-six-content .heading-wrapper .line {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    display: block;
}

.section-six-items {}

.section-six-items ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.section-six-items ul li {
    list-style: none;
    display: block;
    margin-bottom: 15px;
}

.section-six-items ul li .six-item-icon {
    width: 52px;
    float: left;
    margin-right: 20px;
}

.section-six-items ul li .six-item-icon img {
    width: 100%;
    padding: 3px;
}

.section-six-items ul li h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.section-six-items ul li p {
    font-weight: normal;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}


/* section seven */

.section-seventh-wrapper {}

.section-seventh-wrapper .section-seventh-content {
    text-align: center;
    position: relative;
    max-width: 1170px;
    margin: auto;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-heading {
    position: relative;
    z-index: 5;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-heading h2 {
    font-weight: bold;
}

.section-seventh-wrapper .section-seventh-content .parallax-container1 {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass {
    position: relative;
    margin: 6em auto;
    z-index: 1;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass .pass-image {
    margin: 50px auto;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #one {
    width: 587px;
    height: 226px;
    background: url(../images/sec-7-bg-0.png) no-repeat;
    /*    background-size: 647px auto;*/
    background-size: 100% 100%;
    z-index: 1;
    margin: auto;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #two {
    width: 323px;
    height: 409px;
    background: url(../images/sec-7-bg-1.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: movement ease-in-out 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: movement ease-in-out 4s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: movement ease-in-out 4s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: movement ease-in-out 4s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #three {
    width: 372px;
    height: 239px;
    background: url(../images/sec-7.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -20px;
    left: 0px;
    right: 0;
    margin: auto;
    z-index: 2;
    animation: movement1 ease-in-out 4s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: movement1 ease-in-out 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: movement1 ease-in-out 4s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: movement1 ease-in-out 4s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: movement1 ease-in-out 4s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes movement1 {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(-11px, -11px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes movement {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(11px, 11px);
    }
    75% {
        transform: translate(-1px, 1px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.section-seventh-wrapper .section-seventh-content .section-seventh-button {
    position: relative;
    left: 0px;
    right: 0;
    margin: auto;
    text-align: center;
    margin-bottom: 15px;
    z-index: 10;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-button a,
.section-seventh-wrapper .section-seventh-content .section-seventh-button button
{
    display: inline-block;
    background: #333333;
    color: #ffffff;
    font-weight: bold;
    padding: 7px 25px;
    margin: 0px 10px;
    border-radius: 25px;
    text-decoration: none;
    outline: none;
    margin-bottom: 10px;
    border: none;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-button a:hover {
    background: #CE0C34;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-descp {
    position: relative;
    z-index: 5;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-descp p {
    font-size: 8pt;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-descp strong {
    font-weight: bold;
    color: #cb9835;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-form {
    text-align: center;
    max-width: 450px;
    margin: auto;
    position: relative;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-form input {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: auto;
    margin-bottom: 15px;
    text-transform: uppercase;
    border: none;
    text-align: center;
    border-bottom: solid 1px #ccc;
}

.section-seventh-wrapper .section-seventh-content .section-seventh-form button {
    background: #CE0C34;
    color: #ffffff;
    border: none;
    padding: 1px 25px;
    line-height: 22px;
    font-weight: bold;
    outline: none;
}


/* section eight */

.section-eight-wrapper {
    background-image: url(../images/sec-8-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    position: relative;
}

.section-eight-wrapper .sectionEightOverlay {
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-eight-wrapper .section-eight-content {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 5;
}

.section-eight-wrapper .section-eight-content .heading-wrapper {}

.section-eight-wrapper .section-eight-content .heading-wrapper h1 {
    font-size: 36pt;
}

.section-eight-wrapper .section-eight-content .heading-wrapper .line {
    width: 100%;
    height: 1px;
    background: #ce0c34;
    margin: 10px 0px 15px 0px;
    display: block;
}

.section-eight-wrapper .section-eight-items {}

.section-eight-wrapper .section-eight-items ul {
    margin: 0;
    padding: 0;
}

.section-eight-wrapper .section-eight-items ul li {
    list-style: none;
    margin-bottom: 10px;
}

.section-eight-wrapper .section-eight-items .col-xs-6,
.section-eight-wrapper .section-eight-items .col-sm-2 {
    padding-right: 5px;
    padding-left: 5px;
}

.section-eight-wrapper .section-eight-items ul li img {
    max-width: 100%;
    -webkit-filter: grayscale(100%);
    /* Chrome, Safari, Opera */
    filter: grayscale(100%);
    transition: all ease 500ms;
}

.section-eight-wrapper .section-eight-items ul li:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.section-eight-wrapper .andManyMore {
    display: block;
    text-align: right;
}



#fourOfourWrapper #particles-js2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#fourOfourWrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #ffd7de, #e4ffe0, #ffc6a3, #eb9088);
    background-size: 800% 800%;
    animation: bg-animate-envi 20s ease infinite;
    text-align: center;
    z-index: 100;
    display: table;
}

#fourOfourWrapper .fourOfourHeader {
    position: relative;
    margin-top: 20px;
}

#fourOfourWrapper .fourOfourHeader a {
    display: inline-block;
    position: relative;
    z-index: 20;
    margin-bottom: 20px;
}

#fourOfourWrapper .fourOfourHeader img {
    max-width: 150px;
}

#fourOfourWrapper .fourOfour_content {
    padding: 10px 2em;
    display: table-cell;
    vertical-align: middle;
    font-family: 'AvenirNextLTPro-Light';
}

.fourOfour_content .fourOfour_big {
    font-size: 5em;
}

.fourOfour_content a,
.fourOfour_content a:hover {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

.fourOfour_content p {
    font-size: 12px;
    font-family: sans-serif;
}

.fourOfour_content .fourOfour_icon {
    max-width: 80px;
    margin: 15px auto;
}

.fourOfour_content .fourOfour_icon img {
    width: 100%;
}

.animated1 {
    -webkit-animation-name: bounce;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounce;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}


/* Shake animation */

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-30px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(30px);
    }
}

.shake {
    animation-name: shake;
}


/* 404 section page */

/* media screen */

@media (min-width:1600px) {
    .section-fourth-wrapper .container {
        width: 1550px;
    }
    .section-fourth-wrapper .section-fourth-content .section-fourth-left {
        max-width: 400px;
    }
    .section-fourth-wrapper .section-fourth-content .section-fourth-left p {
        font-size: 10pt;
    }
}

@media (min-width:1400px) {
    .section-fourth-wrapper .container {
        width: 1350px;
    }
}

@media (min-width:1200px) {
    .section-one-wrapper .section-one-slider .section-one-slider-item img {
        max-width: 75%;
    }
}

@media (min-width:1024px) {}

@media (min-width:768px) {}

@media (max-width:768px) {
    #sign-up-pop-up-wrapper .section-seventh-descp {
        display: none;
    }
    #sign-up-pop-up #sign-up-pop-up-close i {
        top: 7px;
        right: 20px;
        font-size: 14px;
        padding: 5px 7px;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass{
        margin: 2em auto;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #one {
        width: 60%;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #one {
        height: 90px;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-heading h2 {
        font-size: 18px;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #two {
        width: 323px;
        height: 200px;
        position: absolute;
        top: -40px;
        left: 30px;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-form input {
        width: 90%;
    }
    .section-two-wrapper #playMobile {
        display: block;
    }
    .section-one-wrapper .section-one-slider button {
        display: none !important;
    }
    .section-two-wrapper #myVideo2, .section-two-wrapper #play, #button-web {
        display: none;
    }
    .section-two-wrapper #myVideo, .section-two-wrapper #play-mobile, #button-mobile {
        display: block;
    }

    .form-thank-you-wrapper {
        padding: 2em;
    }
    .section-fourth-wrapper .section-fourth-content .section-fourth-left p br {
        display: none;
    }
    .section-two-wrapper video {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .section-one-wrapper .boltt {
        width: 90%;
        padding: 15px;
    }
    .section-one-wrapper .boltt h2 {
        font-size: 11pt;
    }
    .play-icon-hover,
    .play-icon-hover svg {
        width: 100px;
    }
    .section-three-wrapper {
        background-position: left;
    }
    .section-three-wrapper .section-three-content {
        width: 90%;
        left: 0;
        margin: auto;
    }
    .section-fourth-wrapper .section-fourth-content .section-fourth-left {
        width: 100%;
        margin: auto;
        max-width: inherit;
        padding: 30px 0px;
    }
    .section-fourth-wrapper .section-fourth-content .section-fourth-left h1 {
        font-size: 26pt;
    }
    .section-fourth-wrapper .section-fourth-content {
        padding: 30px 0;
    }
    .section-fifth-wrapper .section-fifth-content {
        width: 90%;
        margin: auto;
        float: none;
        padding: 30px 0px;
    }
    .section-fifth-wrapper .section-fifth-item.shoe,
    #section5shoe {
        width: 150px;
    }
    .section-fifth-wrapper .section-fifth-item.band,
    #section5band {
        width: 130px;
        right: 20px;
        left: auto;
    }
    .section-fifth-wrapper .section-fifth-item.pod,
    #section5pod {
        width: 110px;
        right: 15px;
    }
    .section-six-wrapper {
        background-position: right;
    }
    .section-six-wrapper .section-six-content {
        padding: 30px 0px;
        width: 90%;
        margin: auto;
        float: none;
    }
    .section-six-wrapper .section-six-content .heading-wrapper {
        margin-left: 0;
    }
    .section-seventh-wrapper .section-seventh-content {
        padding: 30px 0px;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-descp p {
        width: 90%;
        margin: auto;
        position: relative;
        top: ;
        padding: 15px 0;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #one {
        height: 150px;
        width: 90%;
    }
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #three,
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #two,
    .section-seventh-wrapper .section-seventh-content .section-seventh-boltt-pass #one {
        width: 80%;
    }
}

@media (max-width:600px) {
    #header_social2{
        display: block;
    }
    #header_social {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
        z-index: 5;
    }
}

@media (max-width:500px) {
    .site-header {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
}

@media (max-width:320px) {}