/* reset */
/* font-family: 'Lato', sans-serif; */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background: #fff;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

p {
    margin: 0 0 20px;
    padding: 0;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: #0A0344;
}

p:last-child {
    margin-bottom: 0;
}

a {
    outline: 0;
    text-decoration: none;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    color: #D75B36;
}

a:hover {
    color: #66717A;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
}

a:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

ul,
ol,
ul li,
ol li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    color: #66717A;
}

figure,
address {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

input,
textarea,
select,
button {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button {
    padding: 0;
    background-color: transparent;
    border: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

table {
    border-collapse: collapse;
}

[hidden] {
    display: none !important;
}

/* =========================================== */
/* Typography */
/* =========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    padding: 0;
    display: block;
    position: relative;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 35px;
}

h5 {
    font-size: 28px
}

h6 {
    font-size: 25px;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn {
    font-weight: 500;
    color: #ffffff;
    background-color: #D75B36;
    padding: 11px 15px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 0px;
    margin: 0;
    border: none;
    display: inline-block;
    transition: 1s;
    width: 100%;
    max-width: 225px;
    border: 1px #D75B36 solid;
}

.btn:hover {
    color: #D75B36;
    background: #fff;
}

.container {
    max-width: 95% !important;
}

.btn1 {
    position: relative;
    background-color: #0A0344;
    width: auto;
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 25px 32px;
    border: 1px solid #0A0344;
    overflow: hidden;
    z-index: 0;
}

.btn1::after {
    content: "";
    width: 17px;
    background-image: url(../images/headArrowWhite.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 10px;
    display: inline-flex;
    margin-left: 8px;
}

.btn1::before,
.actionBox .starBtn::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 0;
    background-color: #fff;
    height: 100%;
    transition: all 1s;
    z-index: -1;
}

.btn1:hover {
    color: #0A0344;
}

.btn1:hover::before,
.actionBox .starBtn:hover::before {
    width: 100%;
}

.btn1:hover::after {
    background-image: url(../images/head-arrow-blue.svg);
}

/***********************/
.header-section {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.header-section.sticky {
    position: fixed;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
    top: 0;
    margin: 0;
    z-index: 2;
    transition: all 0.4s;
}

.header-section.sticky .upperHead {
    height: 0;
    padding: 0;
    overflow: hidden;
}

.header-section.sticky .mainHead {
    transition: all 0.4s;
    padding: 10px;
}

.header-section .upperHead {
    padding: 24px 15px;
    background-color: #0A0344;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 35px;
    color: #fff;
    font-weight: 400;
    flex-wrap: wrap;
    text-align: center;
}

.header-section .upperHead a {
    color: #F74751;
    position: relative;
    margin-left: 5px;
    padding-right: 23px;
}

.header-section .upperHead a:hover::before {
    width: 100%;
    background: #fff;
}

.header-section .upperHead a::after {
    content: "";
    width: 17px;
    background-image: url(../images/headArrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 14px;
    margin-left: 7px;
    position: absolute;
    right: 0;
    top: calc(50% + 2px);
    transform: translateY(-50%);
}

.header-section .upperHead a:hover {
    color: #fff;
}

.header-section .upperHead a:hover::after {
    background-image: url(../images/headArrowWhite.svg);
}

.header-section .mainHead {
    padding: 46px 0 56px;
    background: #fff;
}

/*.header-section .container{max-width:1725px; }*/
.header-section .header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section .header-wrap .logo {
    width: 349px;
    position: relative;
    padding-right: 23px;
    margin-right: 52px;
}

.header-section .header-wrap .logo::after {
    content: "";
    height: 80%;
    width: 1px;
    background-color: #06012B;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-section .header-wrap .logo a {
    overflow: hidden;
    width: 100%;
}

.header-section .header-wrap .logo img {
    width: 100%;
    height: auto;
}

/*****/
.navigation ul {
    display: flex;
}

.navigation ul li {
    list-style-type: none;
    margin-right: 30px;
    position: relative;
}

.navigation ul li.menu-item-has-children a {
    padding-right: 23px;
}

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

.navigation ul li a {
    font-weight: normal;
    text-decoration: none;
    color: #06012B;
    font-size: 24px;
    text-transform: capitalize;
    position: relative;
    padding: 10px 0;
    line-height: 1.2;
}

.navigation ul li a::after,
footer .rightFooter .menuSec ul li a::after,
footer .leftFooter address a::after,
.header-section .upperHead a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    transition: 1s;
    width: 0px;
}

.navigation ul li:hover a::after,
footer .rightFooter .menuSec ul li a:hover::after,
footer .leftFooter address a:hover::after {
    width: 100%;
    background: #F74751;
}

.navigation ul li.current-menu-item a,
footer .rightFooter .menuSec ul li.current-menu-item a {
    color: #F74751;
}

.navigation ul li:hover a,
footer .rightFooter .menuSec ul li a:hover,
footer .leftFooter address a:hover {
    color: #F74751;
}

.navigation ul li ul.sub-menu {
    position: absolute;
    display: block;
    background: #fff;
    top: 30px;
    width: 262px;
    transform: scale(1, 0);
    transition: all .5s;
    transform-origin: top center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
    z-index: 1;
}

.navigation ul li ul.sub-menu.shop-submenu {
    left: auto;
    right: 0;
}

.navigation ul li:hover ul.sub-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.navigation ul li ul.sub-menu.shop-submenu::before {
    left: auto;
    right: 40px;
}

.navigation ul li ul.sub-menu li {
    border-bottom: 1px #fff solid;
    padding: 0;
    display: block;
    margin: 0;
}

.navigation ul li ul.sub-menu li.current-menu-item {
    background: #66717a;
}

.navigation ul li ul.sub-menu li a:hover {
    background: #E1ECFE;
}

.navigation ul li ul.sub-menu li a {
    color: #06012B;
    padding: 10px 16px;
    display: block;
    font-size: 22px;
}

.navigation ul li ul.sub-menu li a::after {
    display: none;
}

.navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.nav-arrow {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 9px;
    width: 9px;
    height: 9px;
    border-right: 1px #06012B solid;
    border-bottom: 1px #06012B solid;
    transform: rotate(45deg) translateY(-50%);
    cursor: pointer;
}

.navigation ul li:hover .nav-arrow,
.navigation ul li.current-menu-item .nav-arrow {
    border-color: #F74751;
}

.actionBox {
    margin-left: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.actionBox .contactBtn {
    font-size: 24px;
    line-height: 34px;
    color: #0A0344;
    font-weight: 700;
    margin-right: 23px;
}

.actionBox .contactBtn:hover {
    color: #F74751;
}

.actionBox .starBtn {
    position: relative;
    background-color: #F74751;
    width: 295px;
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-radius: 50px;
    padding: 15px 10px;
    border: 1px solid #F74751;
    z-index: 0;
    overflow: hidden;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actionBox .starBtn::after {
    content: "";
    width: 17px;
    background-image: url(../images/headArrowWhite.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 14px;
    display: inline-flex;
    margin-left: 8px;
}

.actionBox .starBtn:hover {
    color: #F74751;
}

.actionBox .starBtn:hover::after {
    background-image: url(../images/headArrow.svg);
}

h1 {
    font-weight: 700;
    color: #0A0344;
    font-size: 68px;
    line-height: 80px;
}

h1 span {
    color: #FD0D1B;
}

.bicycleServiceSec {
    background-color: #E1ECFE;
    display: flex;
    flex-wrap: wrap;
}

.bicycleServiceSec .bicycleServiceSecText {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.bicycleServiceSec .bicycleServiceSecTextIn {
    width: 100%;
    max-width: 520px;
    padding: 0 15px;
}

.bicycleServiceSec .bicycleServiceSecText .bicycleServiceSecTextIn figure {
    width: 100%;
    max-width: 125px;
    margin-bottom: 10px;
}

.bicycleServiceSec .bicycleServiceSecText .bicycleServiceSecTextIn figure img {
    width: 100%;
    height: auto;
}

.bicycleServiceSec .bicycleServiceSecImage {
    width: 50%;
}

.bicycleServiceSec .bicycleServiceSecImage .slick-initialized .slick-slide div {
    font-size: 0;
    height: 100%;
}

.bicycleServiceSec .bicycleServiceSecImage .slick-dots {
    left: 0;
    text-align: center;
    padding: 0 15px;
}

.bicycleServiceSec .bicycleServiceSecImage .slick-dots li {
    margin-right: 5px;
}

.bicycleServiceSec .bicycleServiceSecImage .slick-dots li button {
    height: 15px;
    width: 15px;
    border-radius: 100%;
}

.bicycleServiceSec .bicycleServiceSecImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.howItWorksSec {
    text-align: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 123px 0 168px;
}

.howItWorksSec h2 {
    color: #0A0344;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
}

.howItWorksSec p {
    margin: 0 auto 77px;
    width: 100%;
    max-width: 522px;
}

.howItWorksSec .howItWorksSecBox {
    width: 33.33%;
    padding: 0 15px;
}

.howItWorksSec .howItWorksSecBoxIn {
    width: 100%;
    max-width: 475px;
    margin: 0 auto;
}

.howItWorksSec .howItWorksSecBoxIn .contNum {
    width: 60px;
    height: 60px;
    background-color: #0A0344;
    margin: 0 auto 60px;
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.howItWorksSec .howItWorksSecBoxIn h3 {
    font-size: 36px;
    line-height: 46px;
    color: #0A0344;
    font-weight: 700;
}

.howItWorksSec .howItWorksSecBoxIn p {
    font-size: 21px;
    margin: 0 0 15px;
}

.howItWorksSec .btn1 {
    margin-top: 95px;
}

.howItWorksSec .btn1,
footer .leftFooter .btn1 {
    background-color: #F74751;
    border: 1px solid #F74751;
}

.howItWorksSec .btn1:hover::after,
footer .leftFooter .btn1:hover::after {
    background-image: url(../images/headArrow.svg);
}

.howItWorksSec .btn1:hover,
footer .leftFooter .btn1:hover {
    color: #F74751;
}

.whyUse4WheelSec {
    position: relative;
    z-index: 0;
    padding: 64px 0 62px;
}

.whyUse4WheelSec::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 88%;
    height: 100%;
    background-color: #F0F5FE;
    z-index: -1;
}

.whyUse4WheelSec.with-home1::after {
    width: 77%;
}

.whyUse4WheelSec.with-home1 .container {
    max-width: 1440px !important;
}

.whyUse4WheelSec .row {
    align-items: center;
}

.whyUse4WheelSec .whyUse4WheelSecTextIn {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.whyUse4WheelSec .whyUse4WheelSecText {
    width: 50%;
    padding: 0 15px;
}

.whyUse4WheelSec .whyUse4WheelSecText h2 {
    color: #0A0344;
    font-size: 56px;
    line-height: 1.3;
    font-weight: 700;
}

.whyUse4WheelSec .whyUse4WheelSecVideo {
    width: 50%;
    padding: 0 15px;
    position: relative;
}

.whyUse4WheelSec .whyUse4WheelSecVideo video#video {
    background: #000;
}

.play-pause-btn {
    cursor: pointer;
    background-position: center;
    background-size: 92px auto;
    background-repeat: no-repeat;
    background-image: url(../images/playBtn.svg);
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.play-pause-btn.paused {
    background-image: none;
}

.featuredServicesSec {
    padding-top: 68px;
    background-color: #E1ECFE;
}

.featuredServicesSec h2 {
    font-size: 64px;
    line-height: 1.2;
    color: #0A0344;
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 0 15px;
    margin: 0 0 70px;
}

.featuredServicesSec .featuredServicesSecIn {
    display: flex;
    align-items: center;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg {
    width: 50%;
    display: flex;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg1+.featuredServicesSecimg1 {
    margin-left: 3px;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg1,
.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg60 {
    position: relative;
    width: 100%;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg1 img,
.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg60 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecimg .featuredServicesSecimg1 .timeOfimg {
    background: rgba(10, 3, 68, 0.6);
    text-align: center;
    padding: 13px 10px;
    width: 234px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecText {
    width: 50%;
    display: flex;
    justify-content: flex-start;
}

.featuredServicesSec .featuredServicesSecIn:nth-child(even) .featuredServicesSecText {
    justify-content: flex-end;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecText .featuredServicesSecTextBox {
    width: 100%;
    max-width: 540px;
    margin: 0 135px;
    padding: 20px 15px;
}

.featuredServicesSec .featuredServicesSecIn .featuredServicesSecText .featuredServicesSecTextBox h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #0A0344;
    font-weight: 700;
}

.featuredServicesSec .featuredServicesSecIn .priceBox {
    font-size: 21px;
    line-height: 1.3;
    color: #0A0344;
    font-weight: 700;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    margin-bottom: 60px;
}

.featuredServicesSec .featuredServicesSecIn .priceBox strong {
    color: #48C159;
    font-size: 46px;
    line-height: 1.3;
    font-weight: 700;
}

.featuredServicesSec .featuredServicesSecIn:nth-child(even) .featuredServicesSecimg {
    order: 2;
}

a.btn1.LikeLink {
    background: transparent;
    color: #0A0344;
    border: none;
    width: auto;
    padding: 0 0 7px;
    margin-top: 18px;
    border-radius: 0;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

a.btn1.LikeLink::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #0A0344;
}

a.btn1.LikeLink::after {
    background-image: url(../images/arrowBlue.svg);
}

a.btn1.LikeLink:hover {
    color: #F74751;
}

a.btn1.LikeLink:hover::before {
    background-color: #F74751;
}

a.btn1.LikeLink:hover::after {
    background-image: url(../images/headArrow.svg);
}

.reviewsSec {
    padding: 145px 0;
    background-color: rgba(225, 236, 254, 0.5);
}

.reviewsSec .reviewsSecTitle {
    width: 100%;
    max-width: 370px;
    margin: 0 0 50px;
}

.reviewsSec .reviewsSecTitle h2 {
    color: #0A0344;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.reviewsSec .reviewsSecTitle p {}

.reviewsSec .row {
    margin-left: -40px;
    margin-right: -40px;
}

.reviewsSec .reviewsBoxCover {
    padding: 0 40px;
    width: 33.333%;
}

.reviewsSec .reviewsBoxCover .reviewsBox {
    background: #fff;
    padding: 70px 30px;
}

.reviewsSec .reviewsBoxCover .reviewsBox .starRating {
    display: flex;
    margin: 0 0 20px;
}

.reviewsSec .reviewsBoxCover .reviewsBox .starRating .star {
    background-image: url(../images/star.png);
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
}

.reviewsSec .reviewsBoxCover .reviewsBox p {
    font-size: 21px;
    line-height: 31px;
}

.reviewsSec .reviewsBoxCover .reviewsBox strong {
    font-size: 24px;
    line-height: 1.2;
    color: #0A0344;
    font-weight: 700;
    font-style: italic;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

.reviewsSec .viewMore {
    font-size: 26px;
    line-height: 1.2;
    color: #FC0D1B;
    float: right;
    margin: 15px 0;
    position: relative;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

.reviewsSec .viewMore::after {
    content: "";
    width: 80px;
    background-image: url(../images/arrowRed.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 14px;
    display: inline-flex;
    margin-left: 8px;
}

.reviewsSec .viewMore:hover {
    color: #0A0344;
}

.reviewsSec .viewMore:hover::after {
    background-image: url(../images/arrow-blue.svg);
}

footer {
    padding: 70px 0 100px;
}

footer .container {
    max-width: 1440px !important;
}

footer .footer-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .leftFooter {
    width: 40%;
    padding-right: 50px;
}

footer .leftFooter .footLogo {
    width: 100%;
    max-width: 543px;
    margin: 0 0 24px;
}

footer .leftFooter .footLogo a {
    width: 100%;
}

footer .leftFooter .footLogo a img {
    width: 100%;
}

footer .leftFooter address {
    margin: 0 0 40px;
    font-size: 28px;
    line-height: 1.4;
    color: #0A0344;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

footer .leftFooter address strong {
    display: block;
    font-weight: 700px;
}

footer .leftFooter address a {
    color: #0A0344;
    display: inline-block;
    position: relative;
}

footer .rightFooter {
    width: 58%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .rightFooter .menuSec {
    width: 430px;
}

footer .rightFooter .menuSec figure {
    width: 100%;
    max-width: 171px;
}

footer .rightFooter .menuSec figure img {
    width: 100%;
}

footer .rightFooter .menuSec ul {
    margin: 25px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 62px;
}

footer .rightFooter .menuSec ul li {
    width: 50%;
    padding-right: 10px;
    margin-bottom: 7px;
}

footer .rightFooter .menuSec ul li a {
    font-size: 24px;
    line-height: 34px;
    color: #0A0344;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

footer .rightFooter .socialBox {
    width: auto;
}

footer .rightFooter .socialBox label {
    font-size: 24px;
    line-height: 34px;
    color: #0A0344;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

footer .rightFooter .socialBox a {
    width: 41px;
    display: inline-block;
}

footer .rightFooter .socialBox a img {
    width: 100%;
}

footer .rightFooter .socialBox a+a {
    margin-left: 5px;
}

.footer-social-sec {
    width: auto;
}

.footer-social-sec p {
    margin: 0 0 10px;
}

.social-box {
    margin-bottom: 15px;
}

.social-box:last-child {
    margin-bottom: 0px;
}

.social-box:last-child a {
    width: 35px;
    display: inline-block;
}

.social-box a {
    margin-right: 5px;
}

.review-btn-box {
    text-align: center;
    margin: 0px 0px 80px;
}

.review-btn-box h2 {
    font-size: 36px;
    color: #0A0344;
    font-weight: bold;
    margin-bottom: 30px;
}

.review-btn-outter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-btn-outter a {
    display: flex;
    align-items: center;
    color: #0A0344;
    font-weight: bold;
    background: #fff;
    margin: 0px 25px;
    padding: 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
}

.review-btn-outter a:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 8px;
}

.review-btn-outter h4 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.review-btn-outter p {
    font-size: 21px;
    font-weight: 300;
    line-height: 22px;
}

.review-btn-info {
    text-align: center;
    margin-left: 15px;
}
.footer-bottom-logo a {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    display: inline-block;
}

.footer-bottom-logo a:hover {
    transform: translateY(-10px);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    opacity: unset;
}
/**************bikeTuneUps page**start******************/
.bicycleServiceSecImage.withAfterBefore {}

.bicycleServiceSecImage.withAfterBefore .featuredServicesSecimg {
    display: flex;
    width: 100%;
    height: 100%;
}

.featuredServicesSecimg .featuredServicesSecimg1 {
    position: relative;
    width: 100%;
}

.featuredServicesSecimg .featuredServicesSecimg1+.featuredServicesSecimg1 {
    border-left: 7px solid #fff;
}

.featuredServicesSecimg .featuredServicesSecimg1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featuredServicesSecimg .featuredServicesSecimg1 .timeOfimg {
    background: rgba(10, 3, 68, 0.6);
    text-align: center;
    padding: 13px 10px;
    width: 234px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

.bikeTuneUpsSec {
    padding-top: 84px;
}

.bikeTuneUpsSec h2 {
    color: #0A0344;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 50px;
    width: 100%;
    text-align: center;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    justify-content: center;
}

.bikeTuneUpsBoxGap .bikeTuneUpsBoxGapInner {
    height: 100%;
    border: 1px solid #AFC9FC;
    padding: 100px 45px;
    align-items: center;
    display: flex;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox {}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox h3 {
    margin: 0 0 20px;
    color: #0A0344;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox h3 span {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox ul {
    margin: 0 0 20px;
    list-style: none;
    padding: 0;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox ul li {
    position: relative;
    font-size: 18px;
    line-height: 1.3;
    color: #0A0344;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    padding-left: 17px;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background-color: #48C159;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox ul li+li {
    margin-top: 10px;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox .priceBox {
    font-size: 21px;
    line-height: 1.3;
    color: #0A0344;
    font-weight: 700;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    margin-bottom: 0;
}

.bikeTuneUpsSec .bikeTuneUpsBoxCover .bikeTuneUpsBox .priceBox strong {
    color: #48C159;
    font-size: 46px;
    line-height: 1.3;
    font-weight: 700;
    display: block;
}

.howItWorksSec.servicePage1 {
    padding-bottom: 250px;
    background-size: auto 76%;
    background-position: center calc(100% - 92px);
}

.howItWorksSec.servicePage1 p {
    max-width: none;
}

.bikeTuneUpsBoxGap {
    padding: 0 15px;
    width: 33.3333%;
    margin-bottom: 60px;
}

/**************testimonials start*************/
.testimonialsBannerSec {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.testimonialsBannerSec .testimonialsBannerSecInner {
    padding: 445px 0 100px;
}

.testimonialsBannerSec .testimonialsBannerTextBoxCover {}

.testimonialsBannerSec .testimonialsBannerTextBox {
    width: 100%;
    max-width: 555px;
    margin: 0 auto;
    text-align: center;
}

.testimonialsBannerSec .testimonialsBannerTextBox h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #0A0344;
    font-weight: 700;
    margin: 0 0 20px;
}

.testimonialsBannerSec .testimonialsBannerTextBox p {
    margin: 0 0 0;
}

.reviewsSec.InTestimonialsPage {
    padding: 100px 0 70px;
}

.reviewsSec.InTestimonialsPage .reviewsBoxCover {
    width: 100%;
    margin-bottom: 60px;
}

.reviewsSec.InTestimonialsPage .row {
    justify-content: space-between;
    align-items: flex-start;
}

.InTestimonialsPageLeft {
    width: 33.333%;
}

.bicycleServiceSec.forGallerySec1 {
    background-color: #fff;
    padding-bottom: 70px;
}

/************************gallery**********************/
.bicycleServiceSec.forGallerySec1 {
    background-color: #fff;
    padding-bottom: 70px;
}

.gallerySec2 {
    background-color: #F0F5FE;
    padding: 100px 0;
}

.gallerySec2 h2 {
    color: #0A0344;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 50px;
    width: 100%;
    text-align: center;
}

.gallerySec2Inner {}

.gallery-box .featuredServicesSecimg {
    display: flex;
    width: 100%;
}

.gallery-popup .featuredServicesSecimg .featuredServicesSecimg1 {
    width: 60%;
    height: 460px;
}

.gallery-popup .featuredServicesSecimg .featuredServicesSecimg1+.featuredServicesSecimg1 {
    margin-left: 20px;
    width: 40%;
    border: none;
}

.gallery-popup .modal-dialog {
    max-width: 1023px;
}

.gallery-popup button.close {
    width: 46px;
    height: 46px;
    font-size: 0;
    background: #4b4c52;
    border-radius: 100%;
    background-image: url(../images/cross.png);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    position: absolute;
    top: -52px;
    right: 0;
    transition: all 0.4s;
}

.gallery-popup button.close:hover {
    opacity: 1 !important;
    transform: rotate(90deg);
}

.gallery-popup label {
    font-size: 24px;
    line-height: 1.3;
    color: #0A0344;
    font-weight: 400;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    margin: 0 0 30px;
}

.gallery-popup label strong {
    font-weight: 700;
}

.gallery-popup .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 55px 20px 20px;
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    top: -60px;
    right: 104px;
    color: #ABB0B3;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    width: auto;
    height: auto;
    padding-left: 25px;
    transform: none;
    left: auto;
    background-image: none;
}

.gallery-slider .slick-next {
    padding-left: 0;
    padding-right: 25px;
    left: auto;
    right: 0;
}

.gallery-slider .slick-prev::after,
.gallery-slider .slick-next::after {
    position: absolute;
    content: "";
    background-image: url(../images/sliderArrowGrey.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 10px;
    width: 17px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-slider .slick-next::after {
    right: 0;
    left: auto;
    transform: translateY(-50%) rotate(180deg);
}

.gallery-slider .slick-prev:hover,
.gallery-slider .slick-next:hover {
    color: #F74751;
}

.gallery-slider .slick-prev:hover::after,
.gallery-slider .slick-next:hover::after {
    background-image: url(../images/sliderArrowPink.svg);
}

.gallerySec2Inner {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.gallery-img-box {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
    width: 33.333%;
}

.gallery-img-box a {
    position: relative;
    padding-top: 100%;
    display: block;
}

.gallery-img-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

/***ekkoLightbox**/
.ekko-lightbox .modal-body {
    padding: 0;
}

.ekko-lightbox .ekko-lightbox-container {
    position: relative;
}

.ekko-lightbox .ekko-lightbox-nav-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    display: inline-block;
    text-align: center;
    padding: 14px 10px;
    position: absolute;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a {
    color: #000;
    opacity: 1;
    padding: 0 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    width: 150px;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:last-child {
    width: 100px;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:first-child::after {
    content: "Previous";
    margin-left: 4px;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:last-child::before {
    content: "Next";
    margin-right: 4px;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:hover {
    color: #F74751;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a span {
    background-image: url(../images/slider-arrow-Black.svg);
    font-size: 0;
    width: 18px !important;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center left;
    padding: 0;
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:hover span {
    background-image: url(../images/sliderArrowPink.svg);
}

.ekko-lightbox .ekko-lightbox-nav-overlay a:first-child span {}

.ekko-lightbox .ekko-lightbox-nav-overlay a:last-child span {
    transform: rotate(180deg);
    text-align: left;
}

.ekko-lightbox .modal-header {
    display: block !important;
    padding: 0;
    border: none;
    border-radius: 0;
}

.ekko-lightbox .modal-header .modal-title {
    display: none;
}

.ekko-lightbox .modal-dialog {
    margin: 60px auto 20px;
}

.ekko-lightbox-item.fade.in.show {
    width: 100%;
    height: 100%;
}

.ekko-lightbox .modal-dialog .ekko-lightbox-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekko-lightbox.modal {
    overflow-y: hidden;
}

.ekko-lightbox .modal-header button.close {
    padding: 0;
    margin: 0;
    width: 46px;
    height: 46px;
    font-size: 0;
    background: #4b4c52;
    border-radius: 100%;
    background-image: url(../images/cross.png);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    position: absolute;
    top: -52px;
    right: 0;
    /*    top: -25px;
    right: -23px;*/
    z-index: 1;
    transition: all 0.4s;
}

.ekko-lightbox .modal-header button.close:hover {
    transform: rotate(90deg);
    opacity: 1 !important;
}

/*************form css start**********************/
.get-start-form-section {
    background: #fff;
    height: auto
        /*100vh*/
    ;
    z-index: 2;
}

.get-start-form-inner {
    display: flex;
    justify-content: flex-start;
    /*align-items: center;*/
    height: 100%;
}

.get-start-form-left-info {
    width: 1015px;
    position: relative;
    /*height: 100%;*/
}

.get-start-form-left-info img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.location-box {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
}

.location-box h2 {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
}

.location-box p {
    font-size: 28px;
    font-weight: normal;
    color: #FFFFFF;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
    line-height: 1.3;
    margin: 0 0 8px;
}

.location-box p a {
    color: #FFFFFF;
}

.location-box p.form-mail {
    text-decoration: underline;
}

.location-box p a:hover {
    color: #D75B36;
}

.get-start-form-box {
    width: 485px;
    padding: 25px 0 50px;
    margin-left: 170px;
}

.get-start-form-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    line-height: 26px;
    margin-bottom: 24px;
}

.contact-form {}

.form-group label {
    color: #000;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px
}

.form-group .form-control {
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    color: #000;
    font-weight: normal;
    font-size: 14px;
    border: 1px solid #C4C4C4;
    height: 48px;
    border-radius: 8px;
}

.form-group select.form-control {
    color: #C4C4C4;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px 15px;
    appearance: none !important;
}

.form-group .form-control::placeholder {
    color: #C4C4C4
}

.form-group textarea.form-control {
    height: 88px;
    border-radius: 8px;
    resize: none;
    padding: 15px;
}

.form-control:focus {
    border-color: #C4C4C4;
    outline: 0;
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.submit-btn {
    width: 100%;
    background: #0A0344;
    border: 1px solid #0A0344;
    border-radius: 8px;
    color: #fff;
    height: 48px;
    font-size: 12px;
    font-weight: bold;
    transition: 0.4s;
    cursor: pointer;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #F74751;
    border: 1px solid #F74751;
    transition: 0.4s;
}

/**********************style 2****************************************/
.assemble-bike-video {
    padding: 103px 0 84px;
    background: #fff;
}

.whyUse4WheelSec.assemble-bike-video::after {
    display: none;
}

.assemble-bike-video .whyUse4WheelSecVideo img {
    width: 100%;
}

.whyUse4WheelSec.assemble-bike-video .whyUse4WheelSecTextIn {
    max-width: 690px;
}

.bicycle-online-bo {
    padding: 170px 0 94px;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.bicycle-online-bo .container {
    max-width: 1346px !important;
}

.bicycle-online-bo h2 {
    font-size: 56px;
    font-weight: 700;
    color: #0A0344;
    margin: 0px;
    text-align: center;
}

.common-div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.common-div {
    padding: 73px 0 0px;
}

.common-div-left {
    width: 50%;
    padding: 0 17px;
}

.common-div-left p {
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    text-align: right;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
}

.common-div-right {
    width: 50%;
    padding: 0 17px;
}

.common-div-right p {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}

.row-common-contact {
    margin: 60px 0 0 0px;
    padding: 48px 48px;
    background: #fff;
}

.row-common-contact p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding: 0 0 24px;
}

.row-common-contact ul {
    margin: 0px;
    padding: 0px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.row-common-contact ul li {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #0A0344;
    background: url(../images/style-round.png);
    background-repeat: no-repeat;
    background-position: top 10px left;
    list-style: none;
    padding: 0 2px 24px 16px;
    display: inline-block;
}

.row-common-contact ul li a {
    color: #0A0344;
}

.row-common-contact ul li a:hover {
    color: #0A0344;
}

.whyUse4WheelSec.whyUse4WheelSec-xy {
    padding: 176px 0 122px;
}

/*----------------other-services--------------*/
.other-services-os {
    padding: 128px 0 119px;
}

.row-common-os h2 {
    font-size: 64px;
    font-weight: 700;
    color: #0A0344;
    text-align: center;
}

.row-common-os2 {
    padding: 100px 0 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.services-col {
    width: 33.33%;
    padding: 0 20px 53px;
}

.services-inn-col {
    border: 1px solid #AFC9FC;
    padding: 58px 33px 58px 40px;
    height: 100%;
}

.services-inn-col h4 {
    font-size: 36px;
    color: #0A0344;
    font-weight: 700;
    padding: 0 0 25px;
}

.services-inn-col ul li {
    background: url(../images/style-round-blue.jpg);
    background-repeat: no-repeat;
    background-position: top 10px left;
    padding: 0 0px 10px 16px;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.services-inn-col ul li a {
    color: #0A0344;
}

.services-inn-col ul li a:hover {
    color: #0A0344;
}

.services-inn-col ul li p {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #0A0344;
    width: calc(100% - 160px);
}

.services-inn-col ul li b {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #48C159;
    width: 160px;
    text-align: right;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

.appointment-shop {
    width: 332px;
}

.appointment-shop svg {
    margin: 0 0 30px;
}

.appointment-shop p {
    margin: 0px;
    padding: 0px 0 15px;
    font-size: 21px;
    line-height: 34px;
    font-weight: 400;
    color: #0A0344;
}

.appointment-shop p a {
    color: #0A0344;
}

.appointment-shop p a:hover {
    color: #0A0344;
}

.appointment-shop .btn1 {
    margin: 15px 0 0 0px;
}

.services-inn-col.shop-col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    border: none;
}

.featuredServicesSec.special-services {
    padding-top: 111px;
}

.featuredServicesSec.special-services h2 {
    margin: 0 0 100px;
}

.featuredServicesSec.special-services .featuredServicesSecIn:nth-child(even) .featuredServicesSecimg {
    order: 0;
}

.featuredServicesSec.special-services .featuredServicesSecIn:nth-child(odd) .featuredServicesSecimg {
    order: 2;
}

.featuredServicesSec.special-services .featuredServicesSecIn .featuredServicesSecText {
    display: flex;
    justify-content: flex-end;
}

.featuredServicesSec.special-services .featuredServicesSecIn:nth-child(even) .featuredServicesSecText {
    justify-content: flex-start;
}

/*------------company------------*/
.bicycleServiceSec.company-banner-top {
    background-color: #fff;
    padding: 40px 0 58px;
}

.bicycleServiceSec.company-banner-top .bicycleServiceSecTextIn {
    max-width: 800px;
    padding-right: 77px;
}

.bicycleServiceSec.company-banner-top .bicycleServiceSecText {
    justify-content: flex-end;
    padding: 0 0 15px;
    width: 47%;
}

.bicycleServiceSec.company-banner-top .bicycleServiceSecImage {
    padding-right: 77px;
    width: 53%;
}

.track-nationals-tn {
    padding: 110px 0px 72px;
    background: #F0F5FE;
    position: relative;
}

.bicycleServiceSec.company-banner-top h1 {
    text-transform: capitalize;
}

.heading-th {
    margin: 0 0 43px;
}

.heading-th h3 {
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    color: #0A0344;
}

.heading-th h3 b {
    color: #F74751;
    font-weight: 300;
}

.training-track {
    max-width: 806px;
    margin: 0 auto;
    position: relative;
}

.training-track figure {
    margin: 0 0 44px;
}

.training-track p {
    margin: 0
        /*0 0 44px*/
    ;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #0A0344;
}

.track-nationals-tn:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 411px;
}

.training-section {
    padding: 110px 0 90px;
}

.common-row-training {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.half-common {
    width: 50%;
    overflow: hidden;
    position: relative;
    padding: 0 68px 70px;
}

.half-common figure {
    width: 528px;
    float: right;
    position: relative;
}

.caption-show {
    width: 427px;
    background: #F74751;
    padding: 70px 35px 70px 35px;
    position: absolute;
    bottom: -70px;
    left: -217px;
}

.caption-show p {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    color: #fff;
}

.half-common:last-child figure {
    float: left;
}

.half-common:last-child {
    margin-top: 197px;
}

.half-common:last-child .caption-show {
    left: 299px;
    background: #0A0344;
    width: 503px;
}

.passionate-about-xy {
    padding: 55px 0px;
    background: #E1ECFE;
}

.common-row-pa {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.passionate-pic {
    width: 45%;
}

.passionate-pic figure img {
    width: 100%;
}

.passionate-about-xy .container {
    max-width: 1524px !important;
}

.content-passionate {
    width: 55%;
}

.about-community {
    background: #fff;
    padding: 60px 100px 87px;
    margin-left: -100px;
    max-width: 964px;
}

.about-community h4 {
    color: #0A0344;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
}

.about-community p {
    color: #0A0344;
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
}

.WheelBikeShop {
    padding: 146px 0 106px;
}

.WheelBikeShop .container {
    max-width: 1477px !important;
}

.title-shop {
    margin: 0 0 89px;
}

.title-shop p {
    font-size: 36px;
    line-height: 52px;
    color: #0A0344;
    text-align: center;
    font-weight: 200;
    font-style: italic;
    font-family: 'Poppins', Arial, Verdana, Tahoma, sans-serif;
}

.title-shop p b {
    color: #F74751;
}

.WheelBikeShop-content {
    background: #E1ECFE;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.left-pic-shop {
    width: 46.6%;
}

.right-content-shop {
    width: 53.4%;
    padding: 10px 10px 10px 66px;
}

.right-content-shop h3 {
    font-size: 36px;
    font-weight: 700;
    padding: 0 0 18px;
    color: #0A0344;
}

.right-content-shop ul {
    margin: 0px;
    padding: 0px 0 0 20px;
}

.right-content-shop ul li {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding: 0 0 18px;
    color: #0A0344;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
}

/***/
.bicycleServiceSec .slick-track,
.bicycleServiceSec .slick-slider,
.bicycleServiceSec .slick-list {
    height: 100%;
}

.ekko-lightbox .modal-dialog-centered {
    display: flex !important;
}

.gallery-slider-item .view {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slider-item video.video-fluid {
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

/***************multiple select css*************************/
.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container.select2-container--default {
    position: relative;
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
    line-height: 1.1;
}

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 18px;
    width: 18px;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    background-color: #fff;
    margin-right: 12px;
    vertical-align: top;
}

.select2-results__option[aria-selected=true]:before {
    font-family: fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #F74751;
    border: 0;
    display: inline-block;
    padding-left: 0;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    line-height: 1.1;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #C4C4C4;
}

.select2-container--default .select2-selection--multiple {
    color: #C4C4C4;
    appearance: none !important;
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.1;
    border: 1px solid #C4C4C4;
    border-radius: 8px;
    min-height: 48px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 9px 5px;
    width: 100%;
}

.select2-container--default .select2-search--inline .select2-search__field {
    padding: 0 9px;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    font-family: 'Fira Sans', Arial, Verdana, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    color: #C4C4C4;
    box-sizing: border-box;
    background: #fff;
    margin: 0 0 4px 4px;
}

.select2-selection .select2-selection--multiple:after {
    content: 'hhghgh';
}

/* select with icons badges single*/
.select-icon .select2-selection__placeholder .badge {
    display: none;
}

.select-icon .placeholder {
    /* 	display: none; */
}

.select-icon .select2-results__option:before,
.select-icon .select2-results__option[aria-selected=true]:before {
    display: none !important;
    /* content: "" !important; */
}

.select-icon .select2-search--dropdown {
    display: none;
}

.select2-container--default .select2-results__option:hover {
    background-color: #0A0344 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: inherit;
    color: inherit;
}

.select2.select2-container.select2-container--default::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 18px;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    margin-top: 0;
    margin-right: 0;
    font-size: 30px;
    position: absolute;
    right: 16px;
    top: 2px;
    line-height: 1;
    font-weight: 400;
    background: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-right: 32px;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #c4c4c4;
}

.WheelBikeShop .view {
    height: auto;
    position: relative;
    width: auto;
}

.WheelBikeShop video.video-fluid {
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.WheelBikeShop-video {
    padding: 50px 0px;
}

video[poster] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.WheelBikeShop-video .left-pic-shop {
    position: relative;
}

.tips-section .container {
    max-width: 1400px !important;
}

.tips-heading {
    text-align: center;
    padding: 100px 0px 80px;
}

.tips-heading img {
    margin-bottom: 55px;
}

.tips-video-outter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tips-video-item {
    width: 33.33%;
    padding: 0px 20px;
}

.tips-video-box {
    position: relative;
}

.tips-video-box .play-pause-btn {
    background-size: 60px auto;
    background-image: url(../images/tips-play-icon.svg);
    display: none;
}

.tips-video-box .play-pause-btn.paused {
    background-image: none;
}

.tips-video-heading {
    text-align: center;
    margin: 15px 0px 55px;
}

.tips-video-heading h2 {
    font-size: 26px !important;
    color: #0A0344;
    font-weight: bold;
    line-height: 42px;
    margin: 0;
}

.video-popup-box {
    position: relative;
}

.tips-video-popup .close-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.tips-video-popup button.close {
    width: 46px;
    height: 46px;
    background: #707070;
    border-radius: 100%;
    opacity: 1 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tips-video-popup .modal-content {
    background: transparent;
    border: 0px;
    width: 1000px;
}

.tips-video-popup .modal-dialog {
    max-width: 1000px;
}

.tips-video-popup.modal {
    background: rgba(0, 0, 0, 0.72);
}

.tips-vido-play-btn {
    cursor: pointer;
    background-position: center;
    background-size: 92px auto;
    background-repeat: no-repeat;
    background-image: url(../images/playBtn.svg);
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tips-vido-paused {
    opacity: 0;
    visibility: hidden;
}

.error-page-content {
    padding: 125px 150px;
    text-align: center;
}

.error-page-content h1 {
    font-size: 110px;
    font-weight: 700;
    line-height: 120px;
    color: #e71b23;
}

.error-page-content h2 {
    margin-top: 10px;
    margin-bottom: 25px;
    font-weight: 700;
}

.error-page-content p {
    margin-bottom: 25px;
    font-size: 20px;
}

.heading-section {
    text-align: center;
    margin: 0 0 50px;
}

.heading-section h2 {
    margin: 0 0 15px;
}

.heading-section p {
    margin: 0;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px!important;
    font-weight: normal;
    display: block;
    margin-top: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900;
    font-size: 14px;
    margin-top: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    font-size: 14px;
    margin-top: 0;
}

/** THANK YOU PAGE **/
.thank-you-section {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-inner {
    padding: 70px 15px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.thank-you-content {
    margin: 25px 0 0;
}

.thank-you-content h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 1.2;
    color: #0A0344;
    margin: 0 0 25px;
}

.thank-you-content h2 span {
    color: #F74751;
    font-weight: bold;
}

.thank-you-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #0A0344;
    margin: 0 0 37px;
}

.thank-you-content p a {
    font-weight: bold;
    color: #F74751;
    border-bottom: 2px solid #F74751;
    text-decoration: none;
    display: inline-block;
}

.thank-you-content p a:hover {
    color: #0A0344;
    border-color: #0A0344;
}

.btn-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 89px;
}

.btn-cover a {
    background-color: transparent;
    width: auto;
    font-size: 24px;
    line-height: 34px;
    color: #0B0147;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 15px 40px;
    border: 1px solid #0A0344;
    overflow: hidden;
    z-index: 0;
    margin: 0 8px 10px;
}
.btn-cover a:hover {
    background-color: #0B0147;
    color: #ffffff;
}

.thank-you-content .footer-social-sec p{
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: #0A0344;
}
.thank-you-content .social-box a {
    margin-right: 25px;
}
.thank-you-content .social-box a:last-child{
    margin-right: 0;
}




@media (max-width:1023px) {
    .thank-you-content h2 {
        font-size: 42px;
    }
}

@media (max-width:767px) {
    .site-logo {
        width: 200px;
        margin: 0 auto;
    }

    .site-logo img {
        width: 100%;
    }

    .thank-you-content {
        margin: 15px 0 0;
    }

    .thank-you-content h2 {
        font-size: 32px;
        margin: 0 0 25px;
    }

    .thank-you-content p {
        font-size: 16px;
        margin: 0 0 30px;
    }

    .btn-cover {
        margin: 0 0 30px;
    }
    .btn-cover a {
        font-size: 18px;
        line-height: 30px;
        padding: 15px 30px;
}
}
@media (max-width:630px) {
    .btn-cover a {
        font-size: 16px;
    line-height: 22px;
    padding: 15px 25px;
    width: 100%;
    max-width: 280px;
    }
    .thank-you-content .social-box a {
        margin-right: 10px;
    }
}
.footer-bottom-logo {
    position: relative;
    right: -50px;
    bottom: 50px;
    max-width: 200px;
}