@charset "utf-8";

/* CSS Document */

body {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Montserrat-Regular';
}


/* ============ homepage css =============== */

html {}

html,
body {}


/*::-webkit-scrollbar {

    width: 0;

    background: transparent;

}



::-webkit-scrollbar-thumb {

    background: #FF0000;

}*/

h1,
h2 {
    font-family: 'Bayon-Regular';
    color: #000000;
    line-height: 1;
}

h1 {
    font-size: 7.313rem;
    font-weight: 100;
}

h1 strong {
    font-weight: 100;
}

h2 {
    font-size: 6.25rem;
}

h2 strong {
    font-weight: 100;
}

.outer_wrapper {
    max-width: 1690px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.wrapper {
    max-width: 1470px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.inner_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.mobile_toggle {
    position: relative;
    width: 25px;
    margin-left: 60px;
    cursor: pointer;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.mobile_toggle span {
    height: 2px;
    width: 100%;
    display: block;
    background: #fff;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
}

.mobile_toggle span:nth-child(2) {
    margin: 7px 0;
    width: 80%;
}

.mobile_toggle:hover span:nth-child(2) {
    width: 100%;
}

.mobile_menu {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    max-width: 620px;
    width: 100%;
    background: #e22827;
    padding: 100px 70px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    box-shadow: 0 0 14px 5px rgb(0 0 0 / 50%);
    -webkit-box-shadow: 0 0 14px 5px rgb(0 0 0 / 50%);
}

.mobile_menu.open {
    right: 0;
}

.mobile-menu-container .menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
}

.mobile-menu-container a {
    padding: 10px 0;
    font-family: 'Montserrat-Bold';
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.mobile-menu-container li {
    width: 100%;
}

.mobile-menu-container a {
    padding: 10px 0;
    font-family: 'Montserrat-Bold';
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    position: relative;
}

.mobile-menu-container a:hover,
.mobile-menu-container a:focus {
    outline: none;
    text-decoration: none;
}

.mobile-menu-container a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #fff;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: left;
}

.mobile-menu-container a:hover::before {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.close_menu {
    position: absolute;
    right: 70px;
    top: 60px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.close_menu span {
    width: 100%;
    display: block;
    background: #fff;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
}

.close_menu span:first-child {
    transform: rotate(45deg) translate(10px, 10px);
    height: 2px;
}

.close_menu span:last-child {
    transform: rotate(-45deg) translate(-10px, 10px);
    height: 2px;
}

.logo_div a:focus img {
    outline: none !important;
}

.logo_div .site-branding {
    display: none;
}

.logo_div .site-logo {
    margin: 0;
}

.nav_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.site_header.shrink {
    background: #000;
    box-shadow: 0 0 14px 5px rgb(0 0 0 / 50%);
}

.single .site_header {
    background: #000;
}

.single .header_inner {
    border-bottom: none;
}

.header_inner {
    padding: 30px 0;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
}

.site_header.shrink .header_inner {
    border-bottom: none;
    padding: 20px 0;
}

.site-main {
    margin: 0;
    padding: 0;
}

.primary-navigation .primary-menu-container>ul>.menu-item {
    margin-right: 35px;
    position: relative;
}

.primary-navigation .primary-menu-container>ul>.menu-item::after,
.primary-navigation .primary-menu-container>ul>.menu-item::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 85%;
    background: #fff;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    transform: scale(0);
    -webkit-transform: scale(0);
}

.primary-navigation .primary-menu-container>ul>.menu-item::before {
    top: 0;
    right: 0;
    transform-origin: right;
}

.primary-navigation .primary-menu-container>ul>.menu-item::after {
    bottom: 0;
    left: 0;
    transform-origin: left;
}

.primary-navigation .primary-menu-container>ul>.menu-item.current-menu-item::before,
.primary-navigation .primary-menu-container>ul>.menu-item.current-menu-item::after,
.primary-navigation .primary-menu-container>ul>.menu-item:hover::after,
.primary-navigation .primary-menu-container>ul>.menu-item:hover::before {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.primary-navigation .current-menu-item>a:first-child:hover,
.primary-navigation .current_page_item>a:first-child:hover {
    text-decoration: none;
}

.primary-navigation .primary-menu-container>ul>.menu-item>a {
    padding: 10px 0;
    font-family: 'Montserrat-Bold';
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/*.has-background-white .site a:hover, .has-background-white .site a:focus {

    background: none !important;

    outline: none !important;

    text-decoration: none !important;

}*/

a:hover,
:focus {
    background: none !important;
    outline: none !important;
    text-decoration: none !important;
}

.primary-navigation a:hover,
.primary-navigation a:link,
.primary-navigation a:visited {
    color: #fff;
}

.primary-navigation .current-menu-item>a:first-child,
.primary-navigation .current_page_item>a:first-child {
    text-decoration: none;
}


/*-----------------------------------*/

.site-main>* {
    margin: 0;
}

.banner_section {
    position: relative;
    background: #000;
    width: 100%;
    min-height: 250px;
}

.banner_section img,
.banner_section video {
    height: 100vh;
    width: auto;
    max-height: none;
    min-height: 100vh;
    object-fit: cover;
    min-width: 100%;
    opacity: 0.6;
    display: block;
}

.banner_section video {
    max-width: calc(100% - 1410px);
    width: calc(100% - 1410px);
    min-width: calc(100% - 1410px);
    margin-left: 1410px;
}

.banner_content_area {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100vh;
    padding-top: 97px;
}

.banner_content_area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 1430px;
    background: #acb3bb;
    z-index: 1;
    width: 100%;
}


/*.banner_content_area::after {

    content: '';

    position: absolute;

    left: 0;

    top: 39.5%;

    transform: translateY(-50%);

    height: 120px;

    max-width: 510px;

    width: 100%;

    background: url(../images/carv.png)  no-repeat;

    background-size: contain;

    z-index: 1;

}*/

.banner_content_area h1 {
    color: #fff;
    margin: 0;
    position: relative;
}


/*.banner_content_area h1::after {

    content: '';

    position: absolute;

    left: -124px;

    top: 50%;

    transform: translateY(-50%);

    height: 120px;

    max-width: 513px;

    width: 100%;

    background: url(../images/carv.png)  no-repeat;

    background-size: contain;

    z-index: -1;

}*/

.banner_content_area h1 strong {
    position: relative;
}

.banner_content_area h1 strong::after {
    content: '';
    position: absolute;
    left: -1100px;
    top: 49%;
    transform: translateY(-50%);
    height: 115px;
    width: 1500px;
    background: url(../images/carv-big.png) no-repeat;
    background-size: cover;
    z-index: -1;
    right: 0;
}

.banner_content_area .outer_wrapper {
    position: relative;
    z-index: 2;
    /*margin-top: 120px;*/
}

.banner_content_area p {
    font-family: 'Montserrat-Medium';
    font-size: 1.5rem;
    line-height: 1.4;
    color: #fff;
}

.home_banner .banner_content_area p {
    max-width: 590px;
    width: 100%;
}

.banner_content_area a {
    font-size: 1.100rem;
    color: #000;
    font-family: 'Montserrat-Bold';
    width: 100%;
    max-width: 272px;
    height: 65px;
    line-height: 68px;
    display: block;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.banner_content_area a:hover {
    background: #000 !important;
    color: #fff;
    text-decoration: none !important;
}

.banner_content_area a:focus {
    text-decoration: none;
}


/*-----------------------------------*/

.about_us_section {
    padding-top: 130px;
}

.about_left {
    max-width: 660px;
    width: 100%;
}

.about_right {
    max-width: 630px;
    width: 100%;
}

.about_right p {
    font-size: 1.5rem;
    color: #4a4a4a;
}

.about_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.about_left h5 {
    font-size: 2.5rem;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Bayon-Regular';
    padding-left: 206px;
    color: #e22827;
    margin-bottom: 18px;
    display: inline-block;
    letter-spacing: 0px;
    position: relative;
}

.about_left h5::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    max-width: 188px;
    width: 100%;
    background: url(../images/line.png) no-repeat;
    background-size: contain;
}

.about_right a {
    font-size: 1.100rem;
    color: #fff;
    font-family: 'Montserrat-Bold';
    width: 100%;
    max-width: 250px;
    height: 65px;
    line-height: 68px;
    display: block;
    text-align: center;
    background: #e22827 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.about_right a:hover {
    background: #000 !important;
    color: #fff;
    text-decoration: none !important;
}

.about_right a:focus {
    text-decoration: none;
}

.texture_div {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

h1.texture {
    margin: 0;
    text-align: center;
    display: inline-block;
    font-size: 20.875rem;
    padding: 0;
    background: url(../images/texture-bg.png) repeat;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}


/*-----------------------------------*/

.powertrain_section {
    padding: 120px 0 165px 0;
    background: url(../images/power_bg.jpg) no-repeat;
    background-size: cover;
    /* transform: translateY(-117px); */
    margin-top: -105px;
}

.powertrain_section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 70px;
}

.power_inner {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.power_box {
    position: relative;
    width: 20%;
    padding: 50px 30px 40px 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid #fff;
    transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    /* transform: scale(1); */
    background: transparent;
}

.power_box::after {
    opacity: 0;
    content: '';
    position: absolute;
    bottom: -37px;
    height: 37px;
    left: -1px;
    right: -1px;
    background: #fff;
    transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}

.power_box:hover::after {
    opacity: 1;
}

.power_box::before {
    opacity: 0;
    content: '';
    position: absolute;
    top: -36px;
    height: 37px;
    left: -1px;
    right: -1px;
    background: #fff;
    transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}

.power_box:hover::before {
    opacity: 1;
}

.power_box_in {
    position: relative;
}

.power_box_in::before {
    opacity: 0;
    content: '';
    position: absolute;
    top: -91px;
    right: -32px;
    border-style: solid;
    border-width: 13px;
    border-color: #e22827 #e22827 transparent transparent;
}

.power_box:hover .power_box_in::before {
    opacity: 1;
}

.power_box:first-child::before,
.power_box:first-child::after {
    left: 0;
}

.power_box:last-child::before,
.power_box:last-child::after {
    right: 0;
}

.power_box:last-child {
    border-right: none;
}

.power_box:hover {
    /*transform: scale(1.05);*/
    background: #fff;
}

.power_box img.alignnone {
    display: block;
    margin: 0 auto;
}

.power_box h5 {
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin: 15px 0;
}

.power_box:hover h5 {
    color: #e22827;
}

.power_box p {
    font-size: 1rem;
    color: #ffe9e9;
}

.power_box:hover p {
    color: #000;
}

.power_box a {
    display: flex;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #e22827;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    position: unset;
    /* bottom: 40px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* -webkit-transform: translateX(-50%); */
    margin: 20px auto 0 auto;
}

img.red-a {
    display: none;
}

.power_box a:hover {
    background: #000 !important;
}

.power_box:hover a {
    opacity: 1;
    visibility: visible;
}

.hover-icon,
.main-icon {
    display: block;
    width: auto;
    max-width: 107px;
    margin: 0 auto;
}

.hover-icon {
    margin-top: -108px;
    opacity: 0;
}

.power_box:hover .main-icon {
    opacity: 0;
}

.power_box:hover .hover-icon {
    opacity: 1;
}


/*.power_box:hover p {

    margin-top: -55px;

}*/


/*-----------------------------------*/

.tools_area {
    padding: 110px 0 60px 0;
}

.tools_area h2 {
    text-align: center;
    margin-bottom: 50px;
}

.tools_area h2 strong {
    font-weight: 100;
    color: #e22b31;
}

.tools_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tools_col {
    max-width: 310px;
    width: 100%;
}

.tools_col.tools_img {
    max-width: 710px;
}

.tools_col.tools_img img {
    display: block;
    width: 100%;
}

.tools_box {
    margin-bottom: 45px;
    position: relative;
}

.tools_col.tools_img img.mobile_car_image {
    display: none;
}


/*--------------------------------------*/

.ttl_box1 span.span-1 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 330px;
    position: absolute;
    top: 105px;
    left: 119px;
}

.ttl_box1 span.span-2 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 276px;
    position: absolute;
    top: 193px;
    right: -376px;
    transform: rotate(41deg);
}

.ttl_box1 span.span-2::before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 13px solid #e22827;
    position: absolute;
    top: -19px;
    right: -11px;
}

.ttl_box1 span.span-2::after {
    content: '';
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: -19px;
    right: -9px;
    z-index: -1;
    box-shadow: 0 0 0 0 rgb(255 255 255 / 56%);
    animation: ripple 1.5s infinite;
    /*animation-duration: 2s;

    animation-iteration-count: infinite;

    animation-direction: reverse;*/
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}


/*-------------------------------------*/

.ttl_box2 span.span-1 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 240px;
    position: absolute;
    top: 105px;
    left: 199px;
}

.ttl_box2 span.span-2 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 206px;
    position: absolute;
    top: 74px;
    right: -324px;
    transform: rotate(-18deg);
}

.ttl_box2 span.span-2::before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 13px solid #e22827;
    position: absolute;
    top: -19px;
    right: -11px;
}

.ttl_box2 span.span-2::after {
    content: '';
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: -19px;
    right: -9px;
    z-index: -1;
    box-shadow: 0 0 0 0 rgb(255 255 255 / 56%);
    animation: ripple 1.5s infinite;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 56%);
    }
    70% {
        box-shadow: 0 0 0 15px rgb(255 255 255 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 0%);
    }
}


/*---------------------------------------*/

.ttl_box3 span.span-1 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 180px;
    position: absolute;
    top: 105px;
    left: -139px;
}

.ttl_box3 span.span-2 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 244px;
    position: absolute;
    top: 183px;
    left: -353px;
    transform: rotate(139deg);
}

.ttl_box3 span.span-2::before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 13px solid #e22827;
    position: absolute;
    top: -19px;
    right: -11px;
}

.ttl_box3 span.span-2::after {
    content: '';
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: -19px;
    right: -9px;
    z-index: -1;
    box-shadow: 0 0 0 0 rgb(255 255 255 / 56%);
    animation: ripple 1.5s infinite;
    /*animation-duration: 2s;

    animation-iteration-count: infinite;

    animation-direction: reverse;*/
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}


/*--------------------------------------*/

.ttl_box4 span.span-1 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 240px;
    position: absolute;
    top: 115px;
    right: 209px;
}

.ttl_box4 span.span-2 {
    display: block;
    height: 2px;
    background: #f0f0f0;
    width: 196px;
    position: absolute;
    top: 74px;
    left: -321px;
    transform: rotate(-154deg);
}

.ttl_box4 span.span-2::before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 13px solid #e22827;
    position: absolute;
    top: -19px;
    right: -11px;
}

.ttl_box4 span.span-2::after {
    content: '';
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: -19px;
    right: -9px;
    z-index: -1;
    box-shadow: 0 0 0 0 rgb(255 255 255 / 56%);
    animation: ripple 1.5s infinite;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}


/*---------------------------------*/

.tools_box img {
    display: block;
    margin-bottom: 28px;
}

.tools_box h5 {
    font-family: 'Bayon-Regular';
    font-size: 2rem;
    line-height: 1;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tools_box p {
    color: #000000;
    line-height: 1.9;
}

.ttl_box4,
.ttl_box3 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ttl_box4 p,
.ttl_box3 p {
    text-align: right;
}


/*-----------------------------------*/

.operation_section {
    position: relative;
    overflow: hidden;
}

.operation_section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #acb3bd;
    width: 1120px;
    z-index: -1;
}

.opp_inner {
    position: relative;
}


/*.operation_section img {

    width: 100%;

    display: block;

}*/

.opetation_cont {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    right: 70px;
    max-width: 560px;
    width: 100%;
}

.opetation_cont h2 {
    color: #fff;
    position: relative;
    margin-bottom: 25px;
    padding-left: 28px;
}

.opetation_cont h2::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 104px;
    width: 1733px;
    background: url(../images/carv-big22.png) no-repeat;
    z-index: -1;
    background-size: cover;
}

.opetation_cont p {
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 1.5rem;
}

.opetation_cont a {
    font-size: 1.100rem;
    color: #000;
    font-family: 'Montserrat-Bold';
    width: 100%;
    max-width: 232px;
    height: 65px;
    line-height: 68px;
    display: block;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.opetation_cont a:hover {
    background: #000 !important;
    color: #fff;
    text-decoration: none !important;
}

.opetation_cont a:focus {
    text-decoration: none;
}


/*-----------------------------------*/

.accessory_section {
    /*padding: 120px 0 280px;*/
    position: relative;
}

.accessory_in {
    padding: 120px 0 280px;
    background: #fff;
    overflow: hidden;
}

.accessory_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1090px;
    height: 440px;
    background: url(../images/acc-texture.png) repeat-x;
    z-index: -1;
}

.accessory_section .inner_wrapper {
    display: flex;
    justify-content: space-between;
}

.accessory_left {
    max-width: 640px;
    width: 100%;
}

.accessory_list {
    max-width: 580px;
    width: 100%;
}

.accessory_left p {
    font-family: 'Montserrat-Medium';
    font-size: 1.5rem;
    color: #4a4a4a;
}

.accessory_left h2 {
    margin-bottom: 20px;
}

.accessory_left a {
    font-size: 1.100rem;
    color: #c21818;
    border: 1px solid #c21818;
    font-family: 'Montserrat-Bold';
    width: 100%;
    max-width: 252px;
    height: 65px;
    line-height: 65px;
    display: block;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.accessory_left a:hover {
    background: #c21818 !important;
    color: #fff;
    text-decoration: none !important;
}

.accessory_left a:focus {
    text-decoration: none;
}

.access_box {
    display: flex;
    justify-content: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e4e4e4;
    align-items: flex-start;
}

.acc-img {
    max-width: 125px;
    width: 100%;
}

.acc_inn h5 {
    font-size: 2rem;
    line-height: 1;
    font-family: 'Bayon-Regular';
    color: #000;
    letter-spacing: 0.1px;
    margin-bottom: 6px;
}

.acc_inn p {
    color: #000;
}


/*-----------------------------------*/

.footer_saftey {
    margin-top: -200px;
    position: relative;
    /* background: #121111; */
    margin-bottom: 200px !important;
}

.footer_saftey .saftey_inner {
    display: flex;
    justify-content: space-between;
}

.saftey_box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    box-sizing: border-box;
}

.saftey_box:first-child {
    background: url(../images/safe-bg.jpg) no-repeat;
    background-size: cover;
}

.saftey_box:last-child {
    background: url(../images/safe-bg2.jpg) no-repeat;
    background-size: cover;
}

.safty_content {
    max-width: 478px;
    width: 100%;
}

.safty_content h5 {
    font-size: 5rem;
    line-height: 1;
    font-family: 'Bayon-Regular';
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.safty_content p {
    font-size: 1.25rem;
    color: #fff;
    font-family: 'Montserrat-Medium';
    margin-bottom: 15px;
}

.safty_content a {
    font-size: 0.875rem;
    color: #fff;
    font-family: 'Montserrat-Medium';
    line-height: 1;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.safty_content a:focus {
    background: none !important;
    text-decoration: none !important;
    outline: none;
}

.safty_content a img {
    margin-left: 15px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
}

.safty_content a:hover img {
    margin-left: 25px;
}


/*-----------------------------------*/

.home .site_footer {
    background: #121111;
    /*padding-top: 150px;*/
    margin-top: -130px;
}

.site_footer {
    background: #121011;
}

.footer_inner {
    display: flex;
    padding: 100px 0;
    justify-content: space-between;
}

.email_subscribe_box {
    max-width: 700px;
    width: 100%;
}

.footer-nav {
    max-width: 440px;
    width: 100%;
}

.footer-nav ul {
    column-count: 2;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #fff;
    font-size: 0.875rem;
    font-family: 'Montserrat-Bold';
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: #e22827;
}

.es-field-wrap label {
    font-size: 1.625rem;
    line-height: 1;
    font-family: 'Montserrat-Bold';
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.es-field-wrap input {
    font-size: 1rem;
    font-weight: 100;
    font-family: 'Montserrat-Regular';
    max-width: 480px;
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    color: #fff !important;
    margin-top: 31px;
    height: 65px;
    padding: 0 35px;
    box-sizing: border-box;
    letter-spacing: 2px;
}

.es-field-wrap input::placeholder {
    color: #fff !important;
}

.email_subscribe_box form {
    position: relative;
}

.es_subscription_form_submit {
    position: absolute;
    right: 0;
    top: 62px;
    height: 65px;
    width: 218px;
    padding: 0 !important;
    line-height: 65px !important;
    border: none !important;
    background: #fff !important;
    color: #e22827 !important;
    font-family: 'Montserrat-SemiBold' !important;
    font-size: 0.875rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.es_subscription_form_submit:hover {
    background: #e22827 !important;
    color: #fff !important;
}

.powered-by {
    padding: 50px 0;
    border-top: 1px solid #2a2929;
    text-align: center;
}

.powered-by p {
    color: #fff;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
}

.powered-by p a {
    color: #e22827;
}

.powered-by p a:hover {
    color: #fff;
}


/*--------------------------about page style------------------------------------*/

.common_inner_banner img {
    height: auto;
    min-height: auto;
    min-width: calc(100% - 1410px);
    max-width: calc(100% - 1410px);
    width: calc(100% - 1410px);
    margin-left: 1410px;
}

.common_inner_banner .outer_wrapper {
    margin-top: 0;
}

.banner_content_area {
    height: auto;
}

.common_inner_banner .banner_content_area h1 strong::after {
    width: 1510px;
}

.story_section {
    /*padding: 100px 0 30px 0;*/
    position: relative;
}

.story_section::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 1090px;
    height: 440px;
    background: url(../images/acc-texture.png) repeat-x;
    z-index: -1;
}

.story_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px 0 30px 0;
    background: #fff;
    position: relative;
}

.story_inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -110px;
    width: 110px;
    height: 440px;
    background: #fff;
    z-index: 1;
}

.story_right {
    max-width: 600px;
    width: 100%;
}

.story_left {
    max-width: 850px;
    width: 100%;
    margin-left: -90px;
}

.story_right p {
    font-size: 1.5rem;
    color: #4a4a4a;
}

.story_right h5 {
    font-size: 2.5rem;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Bayon-Regular';
    padding-left: 130px;
    color: #e22827;
    margin-bottom: 18px;
    display: inline-block;
    letter-spacing: 0px;
    position: relative;
}

.story_right h5::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    max-width: 188px;
    width: 100%;
    background: url(../images/line2.png) no-repeat;
    background-size: contain;
}

.story_right h2 {
    margin-bottom: 15px;
}


/*-------------------------------------------------*/

.about_operation_section {
    background: #f8f8f8;
}

.Ab_opeartion_inner {
    display: flex;
    justify-content: space-between;
    
    align-items: center;
}

.about_ope_left {
    max-width: 580px;
    width: 100%;
}

.about_ope_left h2 {
    margin-bottom: 32px;
}

.about_ope_left ul li {
    font-size: 1.313rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.about_ope_left ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: url('../images/tick.png') no-repeat;
    background-size: contain;
}

.about_ope_left h2 strong {
    position: relative;
    color: #fff;
    z-index: 1;
}

.about_ope_left h2 strong::after {
    content: '';
    position: absolute;
    left: -1100px;
    top: 49%;
    transform: translateY(-50%);
    height: 100px;
    width: 1500px;
    background: url(../images/carv-big.png) repeat-x;
    background-size: cover;
    z-index: -1;
}


/*------------------------------------------------*/

.contct_form_area h1.texture,
.mission_section h1.texture {
    font-size: 23.125rem;
    line-height: 1;
}

.mission_section .texture_div {
    padding-top: 0;
    justify-content: flex-start;
    margin-left: -170px;
}


/*-------------------------------------------*/

.firm_automation_section {
    position: relative;
    margin-top: -114px;
}

.firm_automation_section::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    right: 40px;
    bottom: 40px;
    border: 2px solid #fff;
}

.firm_automation_section .outer_wrapper {
    /*max-width: 1920px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.firm_automation_section img {
    display: block;
    width: 100%;
}

.firm_content {
    /*position: absolute;

    top: 50%;

    right: 40px;

    transform: translateY(-50%);*/
    position: relative;
    max-width: 667px;
    width: 100%;
    background: #fff;
    padding: 80px 55px;
    box-sizing: border-box;
    overflow: hidden;
    margin-right: 27px;
}

.firm_content:before {
    content: '';
    left: 0;
    top: 0;
    z-index: 1;
    border-style: solid;
    border-width: 30px;
    border-color: #cfa58f #fff #fff #cfa58f;
    position: absolute;
}

.firm_content h2 {
    margin-bottom: 30px;
}

.firm_content h2 strong {
    position: relative;
    color: #fff;
    z-index: 1;
}

.firm_content h2 strong::after {
    content: '';
    position: absolute;
    left: -75px;
    top: 49%;
    transform: translateY(-50%);
    height: 100px;
    width: 525px;
    background: url(../images/carv.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.firm_content ul li {
    font-size: 1.313rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.firm_content ul li:last-child {
    margin-bottom: 0;
}

.firm_content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: url('../images/tick.png') no-repeat;
    background-size: contain;
}


/*-------------------------------------------*/

.boson_CEO {
    padding: 120px 0;
}

.boson_CEO .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ceo_content {
    max-width: 620px;
    width: 100%;
}

.ceo_content p {
    font-size: 1.5rem;
    font-family: 'Montserrat-Medium';
}

.ceo_content h2 {
    margin-bottom: 15px;
}

.ceo_content h5 {
    font-size: 3.5rem;
    line-height: 1;
    font-family: 'FairProsper';
    margin-top: 45px;
}

.ceo_content h6 {
    font-size: 17px;
    line-height: 1;
    letter-spacing: inherit;
}


/*----------------------  start conatct page style ---------------------------------*/

.contct_form_area {
    padding-top: 130px;
}

.contact_left h2 strong {
    color: #e22827;
}

.contact_left p {
    font-size: 1.5rem;
    font-family: 'Montserrat-Medium';
}

.contact_left h2 {
    margin-bottom: 27px;
}

.contact_left a {
    color: #e22827;
    text-decoration: underline;
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.contact_left a img {
    margin-right: 15px;
}

.contact_left {
    max-width: 720px;
    width: 100%;
}

.form_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact_right {
    max-width: 800px;
    width: 100%;
}

.form_row {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.from_box {
    max-width: 49%;
    width: 100%;
}

.from_Full {
    width: 100%;
}

.field_texarea textarea,
.field_div select,
.field_div input {
    width: 100%;
    height: 65px;
    background: #f5f6f7;
    text-transform: uppercase;
    padding: 0 40px;
    font-family: 'Montserrat-Medium';
    border: none;
    font-size: 1rem;
}

.field_texarea textarea::placeholder,
.field_div select::placeholder,
.field_div input::placeholder {
    color: #4a4a4a !important;
}

.field_texarea textarea {
    height: 180px;
    padding-top: 20px;
    resize: none;
}

.field_texarea textarea:focus,
.field_div select:focus,
.field_div input:focus {
    outline-offset: 0;
    outline: unset !important;
    background: #f5f6f7 !important;
}

.field_submit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.field_submit input {
    width: 250px;
    height: 65px;
    border: none;
    font-size: 1.100rem;
    font-family: 'Montserrat-bold';
    padding: 0 20px;
    background: #e22827 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.field_submit input:hover {
    color: #fff !important;
    background: #000 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #e22827;
    font-size: 16px;
    padding: 15px 20px;
    font-family: 'Montserrat-Medium';
}


/*.contct_form_area .texture_div {
	padding-top: 40px;
}*/

.page-id-21 .site_footer {
    margin-top: -114px;
    position: relative;
}

.from_box .wpcf7-not-valid-tip {
    font-size: 12px;
}

.select_div {
    position: relative;
}

.select_div::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 15px;
    height: 5px;
    background: url('../images/drop.png') no-repeat;
    background-size: contain;
}


/*---------------------------------------------*/

.investor_section {
    padding: 90px 0;
}

.investor_section h3 {
    font-size: 3.125rem;
    line-height: 1;
    font-family: 'Bayon-Regular';
    margin-bottom: 50px;
    text-align: center;
    color: #000;
}

.investor_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature_post_area {
    /*padding-top: 30px;

    padding-bottom: 80px;*/
    position: relative;
}

.feature_post_area .wrapper {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 80px;
}

.feature_post_area::before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 1190px;
    height: 440px;
    background: url(../images/acc-texture.png) repeat-x;
    z-index: -1;
}

.feature_post_area h2 {
    text-align: center;
    margin-bottom: 70px;
}

.post_inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.post_box.firstPost {
    width: 100%;
    padding-bottom: 110px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-right: 0;
}

.post_box {
    width: 32%;
    margin-right: 2%;
}

.post_box:last-child {
    margin-right: 0;
}

.post-image img {
    width: 100%;
    display: block;
}

.post_box.firstPost .post-image {
    width: 750px;
}

.post_box.firstPost .post_content {
    width: 790px;
    margin-left: -70px;
    background: #fff;
    padding: 70px;
    box-sizing: border-box;
    margin-bottom: -40px;
}

.post_content {
    box-shadow: 0px 7px 18px 0px rgb(0 0 0 / 3%);
    -webkit-box-shadow: 0px 7px 18px 0px rgb(0 0 0 / 3%);
}

.post_content {
    padding: 45px 40px;
    box-sizing: border-box;
    margin-top: -65px;
    background: #fff;
    position: relative;
    margin-right: 30px;
}

.post-image img {
    width: 100% !important;
    display: block;
    max-width: 100% !important;
    transition: all ease 300ms;
    height: 344px !important;
    object-fit: cover;
}

.post_box.firstPost .post-image img {
    height: 535px !important;
}

.post_content h4 {
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'Bayon-Regular';
    color: #000;
    margin-bottom: 16px;
    display: inline;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.backto_blog,
.post_content .read_more {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Bayon-Regular';
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 33px;
    display: none;
}

.backto_blog,
.post_box.firstPost .post_content .read_more {
    display: block;
}

.backto_blog:hover,
.post_content h4:hover a,
.post_content .read_more:hover {
    color: #e22827;
}

.backto_blog:focus,
.post_content .read_more:focus {
    color: indianred !important;
}

.single_post_wrapper date,
.post_content date {
    height: 30px;
    line-height: 30px;
    background: #e22827;
    font-family: 'Montserrat-SemiBold';
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding: 0 17px;
    margin-bottom: 37px;
}

.single_post_wrapper date {
    margin-bottom: -10px;
    margin-top: 40px;
}

.post_content p {
    color: #000;
    display: inline;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.feature_post_area h2 strong {
    color: #e22827;
}

.post-image {
    overflow: hidden;
}

.post-image:hover img {
    transform: scale(1.1);
}

.pagination_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
}

.pagination_wrap span,
.pagination_wrap a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #acb3bb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-family: 'Montserrat-Medium';
    font-size: 19px;
    position: relative;
}

.pagination_wrap span.current,
.pagination_wrap a:hover {
    background: #acb3bb !important;
    color: #fff;
}

.pagination_wrap a.prev,
.pagination_wrap a.next {
    text-indent: -999px;
    border: none;
    background: none !important;
}

.pagination_wrap a.prev::before,
.pagination_wrap a.next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 31px;
    height: 15px;
    background: url('../images/next.png') no-repeat !important;
}

.pagination_wrap a.prev::before {
    background: url('../images/prev.png') no-repeat !important;
}

.single_post_wrapper {
    padding-top: 160px;
    padding-bottom: 71px;
}

figure.post-thumbnail img {
    width: 100%;
    max-width: 100% !important;
}

.single_post_wrapper .post-thumbnail {
    margin: 0;
}

.single_post_wrapper .post-thumbnail .wp-post-image {
    display: block;
    width: auto;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    height: 500px !important;
    object-fit: cover;
}

.single_post_wrapper h3 {
    font-family: 'Bayon-Regular';
    font-size: 2.5rem;
    color: #000000;
    line-height: 1;
    margin: 45px 0 20px 0;
}

.single_post_wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
}


/*---------------------------------*/

.product_main_area {
    padding: 130px 0;
}

.product_row_box {
    margin-bottom: 110px;
}

.product_row_box:last-child {
    margin-bottom: 0;
}

.product_row_box {
    margin-bottom: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.product_row_box:nth-child(even) {
    flex-direction: row-reverse;
}

.product_row_box:last-child {
    margin-bottom: 0;
}

.product_image_wrap {
    max-width: 710px;
    width: 100%;
    margin-right: -210px;
    position: relative;
    z-index: 2;
    margin-bottom: -50px;
}

.product_row_box:nth-child(even) .product_image_wrap {
    margin-right: unset;
    margin-left: -210px;
    max-width: 740px;
}

.product_content_wrap {
    max-width: 960px;
    width: 100%;
    padding: 130px 70px 130px 250px;
    border: 3px solid #dfdfdf;
    position: relative;
    background: #fff;
}

.product_row_box:nth-child(even) .product_content_wrap {
    padding: 130px 250px 130px 70px;
}

.product_content_wrap::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    border-style: solid;
    border-width: 50px;
    border-color: #fff #fff transparent transparent;
    z-index: 4;
}

.product_content_wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    border-style: solid;
    border-width: 50px;
    border-color: #dfdfdf #dfdfdf transparent transparent;
    z-index: 2;
}

.product_row_box:nth-child(even) .product_content_wrap::before {
    left: -3px;
    right: unset;
    border-color: #ffffff transparent transparent #fff;
}

.product_row_box:nth-child(even) .product_content_wrap::after {
    left: -1px;
    right: unset;
    border-color: #dfdfdf transparent transparent #dfdfdf;
}

.product_content_wrap h2 {
    font-size: 5.9rem;
    margin-bottom: 20px;
}

.product_content_wrap h2 span.power {
    color: #e22827;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.product_content_wrap p {
    font-size: 1.5rem;
    font-family: 'Montserrat-Medium';
}

.product_content_wrap a {
    font-size: 1.100rem;
    color: #fff;
    font-family: 'Montserrat-Bold';
    width: 100%;
    max-width: 240px;
    height: 65px;
    line-height: 68px;
    display: block;
    text-align: center;
    background: #e22827;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.product_content_wrap a:hover {
    background: #000 !important;
    color: #fff;
    text-decoration: none !important;
}

.product_content_wrap a:focus {
    text-decoration: none;
    background: #000 !important;
}


/*------------------- strat cart page--------------------------------*/

.page-id-404 .nav_div,
.page-id-327 .nav_div,
.page-id-326 .nav_div,
.single-product .nav_div {
    display: none;
}


/*.page-id-327 .site_header,*/

.page-id-404 .site_header,
.page-id-326 .site_header,
.single-product .site_header {
    background: transparent;
}


/*.page-id-327 .site_header.shrink,*/

.page-id-404 .site_header.shrink,
.page-id-326 .site_header.shrink,
.single-product .site_header.shrink {
    box-shadow: none;
}

.main_singleProduct_wrapper nav.woocommerce-breadcrumb {
    display: none;
}

.page-id-404 .site_footer,
.page-id-404 header.entry-header.alignwide,
.page-id-327 .site_footer,
.page-id-327 header.entry-header.alignwide,
.page-id-326 .site_footer,
.page-id-326 header.entry-header.alignwide {
    display: none;
}

.page-id-326 {
    background: url('../images/product-bg.jpg') no-repeat;
    background-size: cover;
    /*height: 100vh;*/
}

.page-id-327 {
    background: url('../images/product-bg.jpg') no-repeat;
    background-size: cover;
    /*height: 100vh;*/
}

.page-id-326 article.page {
    height: 100vh;
    min-height: 100vh;
}

.page-id-326 .entry-content {
    margin: 0 !important;
}

.cart_dtl_wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 500px;
    width: 100%;
    background: #e22827;
    padding: 40px 55px;
    box-sizing: border-box;
    z-index: 50;
}

.woocommerce-notices-wrapper {
    display: none;
}

.mainCart-thumbnail {
    max-width: 700px;
    width: 100%;
}

.cartImg_Wrap .wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
}

.total_row {
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0;
    background: #1e1e1e;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 2rem;
}

.checkout-steps ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto 40px auto;
    max-width: 320px;
}

.checkout-steps li {
    border: 2px solid #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #e22827;
}

.checkout-steps li::after {
    content: '';
    position: absolute;
    right: -100%;
    width: 100%;
    height: 1px;
    background: #fff;
}

.checkout-steps li:last-child::after {
    display: none;
}

.checkout-steps a {
    font-size: 2rem;
    color: #fff;
    font-family: 'Montserrat-Semibold';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-steps li.current-menu-item a {
    background: #abb2b9;
}

.product_name_row h3 {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin-bottom: 20px;
}

.cart_desc p {
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Montserrat-Medium';
}

.product_quentity {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_quentity h5,
.variation_wra_tt h5 {
    font-family: 'Montserrat-Semibold';
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}

span.quantity-box .quantity {
    display: flex;
    align-items: center;
}

span.quantity-box button,
span.quantity-box input {
    height: 65px;
    border: 1px solid #fff;
    border-right: none;
    background: transparent !important;
    padding: 0;
    width: 90px !important;
    margin: 0 !important;
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Montserrat-Medium';
    appearance: none;
    -webkit-appearance: none;
}

span.quantity-box button.plus {
    border-right: 1px solid #fff;
}

.variation_wra_tt {
    margin-top: 35px;
    width: 100%;
    background: #d41b1a;
}

.variation_wra_tt h5 {
    padding: 15px 40px;
}

.tRow {
    padding: 15px 40px;
    background: #c41312;
    display: flex;
    justify-content: flex-start;
}

.tRow:nth-child(odd) {
    background: transparent;
}

.vaT_row .variation-Car,
.tRow label {
    font-family: 'Montserrat-Semibold';
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}

.tRow input[type=radio]:after {
    display: none !important;
    content: "";
    opacity: 0;
    display: block;
    left: 3px;
    top: 3px;
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--form--color-text);
}

.tRow input[type=radio]:checked {
    /*display:none !important;*/
    background: #000;
}

.tRow input[type=radio] {
    border: 1px solid #fff;
    background: none;
}

.custom_cart_total .cart-subtotal {
    display: none;
}

.order-total {
    display: flex;
    justify-content: space-between;
}

.woocommerce-page .cart-collaterals::before {
    content: " ";
    display: none;
}

.custom_cart_total.cart_totals {
    width: 100% !important;
    float: none !important;
}

.custm_cart_collaterals {
    background: #1e1e1e;
    position: absolute;
    bottom: 0;
    left: 0;
}

.custm_cart_collaterals .wc-proceed-to-checkout {
    padding: 0;
    position: absolute;
    top: -110px;
    right: 55px;
    left: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vaT_row dl.variation {
    display: flex;
    margin-top: 25px;
}

.vaT_row dl.variation dd.variation-Car {
    -webkit-margin-start: 10px;
}

.quantity {
    margin-top: 40px;
}

.custom_cart_total .order-total {
    padding: 20px 50px;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 2rem;
}

.actions_wrap button.button,
.custm_cart_collaterals .wc-proceed-to-checkout a.checkout-button {
    height: 45px;
    width: 150px;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat-Bold';
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.actions_wrap button.button:hover,
.actions_wrap button.button:focus,
.custm_cart_collaterals .wc-proceed-to-checkout a.checkout-button:hover,
.custm_cart_collaterals .wc-proceed-to-checkout a.checkout-button:focus {
    color: #fff !important;
    background: #c41312 !important;
}

.custm_cart_collaterals .wc-proceed-to-checkout::before,
.custm_cart_collaterals .wc-proceed-to-checkout::after {
    display: none;
}

.wc-proceed-to-checkout p.exclue_tax {
    color: #fff;
    font-size: 14px !important;
}

.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    position: relative;
}


/*.actions_wrap {
    position: absolute;
    right: 0;
    bottom: 85px;
}*/

.actions_wrap {
    padding-top: 15px;
}


/*------------------- end cart page--------------------------------*/

.default_page_seaction {
    padding: 70px 0;
}

.banner_content_area h1 em {
    font-style: normal;
}

.cart_banner {
    display: none;
}

.return-to-shop a {
    font-size: 0.875rem;
    color: #000;
    font-family: 'Montserrat-Semibold';
    width: 100%;
    max-width: 232px;
    height: 65px;
    line-height: 68px;
    display: block;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
}

.return-to-shop a:hover {
    background: #e22827 !important;
    color: #fff;
    text-decoration: none !important;
}

.return-to-shop a:focus {
    text-decoration: none;
}

.woocommerce-info::before {
    color: #e22827;
}

.woocommerce-info {
    border-top-color: #e22827;
}

.mission_section .about_right p {
    margin-bottom: 16px;
}

.product-remove a.remove {
    width: auto;
    text-align: left;
    color: #fff !important;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}

.check_out_div {
    overflow-y: scroll;
    height: 1550px;
}

.check_out_div::-webkit-scrollbar {
    width: 7px;
}

.check_out_div::-webkit-scrollbar-track {
    background: #000;
}

.check_out_div::-webkit-scrollbar-thumb {
    background: #fff;
}

.check_out_div::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.contact_info h4 {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin-bottom: 10px;
}

.contact_info p {
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
    margin-bottom: 20px;
}

.woocommerce-billing-fields h3 {
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin-bottom: 10px;
    margin-top: 30px;
}

.woocommerce-billing-fields__field-wrapper label {
    color: #fff !important;
}

.woocommerce-billing-fields__field-wrapper input {
    height: 50px;
    border: none;
    background: #fff !important;
    font-size: 14px;
}

.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
    right: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    background: #fff !important;
}

.place_order_button {
    font-size: 0.8rem !important;
    font-family: 'Montserrat-Semibold' !important;
    width: 100%;
    max-width: 172px;
    height: 55px;
    line-height: 58px !important;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px !important;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    text-decoration: none;
    padding: 0 !important;
}

.place_order_button:active,
.place_order_button:focus,
.place_order_button:hover {
    background: #e22827 !important;
    color: #fff;
    text-decoration: none !important;
}

.place_order_button:focus {
    text-decoration: none;
}

.checkout_total_wrap {
    background: #1e1e1e;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.checkout_total_wrap .order-total {
    padding: 13px 50px;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 20px;
}

.check_out_div_inner {
    padding-right: 10px;
}

.woocommerce form .form-row {
    padding: 3px 0;
}

.woocommerce-checkout #payment {
    border-radius: 0;
    margin-top: 30px;
}

.cutom_div_modify_wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: calc(100% - 600px);
    border-top: 1px solid #2b292a;
    border-bottom: 1px solid #2b292a;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cutom_div_modify_wrap .product-price {
    width: 100%;
    max-width: 25%;
    text-align: center;
    border-right: 1px solid #2b292a;
}

.cutom_div_modify_wrap .vaT_row {
    width: 100%;
    max-width: 75%;
}

.custom_variation_wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.var_dix {
    width: 100%;
    max-width: 33.33%;
    padding: 25px 0;
    text-align: center;
    border-right: 1px solid #2b292a;
}

.var_dix,
.cutom_div_modify_wrap .product-price {
    padding: 16px 0;
}

.var_dix:last-child {
    border-right: none;
}

.cutom_div_modify_wrap dl.variation {
    margin: 0;
    display: block;
}

.cutom_div_modify_wrap .product-price p,
.var_dix dt {
    font-size: 19px;
    line-height: 23px;
    color: #fff;
    font-family: 'Montserrat-Medium';
}

.cutom_div_modify_wrap bdi,
.var_dix dd {
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    font-family: 'Montserrat-Semibold';
    margin: 0;
    padding-top: 5px;
}

.vaT_row.fix_vt_row .custom_variation_wrap {
    display: none;
}

.cutom_div_modify_wrap span.woocommerce-Price-currencySymbol,
.cutom_div_modify_wrap dt.variation-Car,
.cutom_div_modify_wrap dd.variation-Car {
    display: none;
}

.cart_banner_section {
    display: none;
}

.Acc_inner {
    padding: 80px 0;
}

.vaT_row.fix_vt_row dl.variation {
    padding: 15px 20px;
    background: #c32a29;
}


/*.reservation_wrap .quantity input.qty:focus,*/

.product-quantity .quantity input.qty:focus {
    background: #fff !important;
}

.bg_image_ingle img,
.reservation_section img {
    height: 100vh !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    object-fit: cover;
}

.reservation_wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 500px;
    width: 100%;
    background: #e22827;
    padding: 40px 55px 97px 55px;
    box-sizing: border-box;
    z-index: 50;
}

.reservation_attribute {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    border-top: 1px solid #2b292a;
    border-bottom: 1px solid #2b292a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 52;
    width: 100%;
    max-width: calc(100% - 500px);
}

.att_box {
    padding: 16px 0;
    text-align: center;
    max-width: 25%;
    width: 100%;
    border-right: 1px solid #2b292a;
}

.att_box:last-child {
    border-right: none;
}

.att_box p {
    font-size: 19px;
    line-height: 23px;
    color: #fff;
    font-family: 'Montserrat-Medium';
    margin: 0;
}

.att_box h6 {
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    font-family: 'Montserrat-Semibold';
    margin: 0;
    padding-top: 5px;
}

.total_priccc {
    background: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 55;
    padding: 32px 55px;
}

.total_priccc h6 {
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 32px;
    line-height: 32px;
}

.contact_info_box {
    display: none;
}

.tab_head {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto 40px auto;
    max-width: 270px;
}

.tab_head a {
    border: 1px solid #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #e22827 !important;
}

.tab_head a.active span {
    background: #abb2b9;
}

.tab_head a span {
    font-size: 2rem;
    color: #fff;
    font-family: 'Montserrat-Semibold';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab_head a::after {
    content: '';
    position: absolute;
    right: -100%;
    width: 100%;
    height: 1px;
    background: #fff;
}

.tab_head a:last-child::after {
    display: none;
}

.next_row {
    position: absolute;
    bottom: 160px;
    left: 0;
    right: 0;
    padding: 0 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_info_box h3,
.rv_heading h3 {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin-bottom: 15px;
}

.woocommerce-product-details__short-description p,
.join_bosonn p,
.contact_info_box p,
.rv_heading p {
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Montserrat-Medium';
}

.top_row {
    margin-top: 40px;
}

.quty_row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.car_row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    align-items: center;
    padding: 3px 20px;
    background: #c32a29;
}

.car_row label,
.quty_row label {
    font-family: 'Montserrat-Medium';
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.car_row label {
    text-transform: uppercase;
    font-family: 'Montserrat-Semibold';
}

.car_row label {
    margin-right: 5px;
    margin-bottom: 0;
}

.quty_row input:focus,
.quty_row input {
    height: 50px !important;
    border: none !important;
    text-align: center;
    font-family: 'Montserrat-Semibold';
    font-size: 16px;
    width: 80px;
    padding: 0 7px !important;
    background: #fff !important;
}

.car_row span.wpcf7-form-control-wrap {
    width: 100%;
    max-width: calc(100% - 40px);
}

.car_row input {
    height: 50px !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-family: 'Montserrat-Semibold';
    font-size: 16px;
    text-transform: uppercase;
}

.car_row input::placeholder {
    color: #fff;
}

.next_row a {
    background: #1e1e1e;
    color: #fff;
    width: 90px;
    display: inline-block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    font-family: 'Montserrat-Semibold';
    font-size: 16px;
}

.next_row a:hover,
.next_row a:focus {
    background: #000 !important;
}

.next_row p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Montserrat-Regular';
    width: 100%;
    max-width: calc(100% - 150px);
    padding-right: 15px;
}

.rv_heading.hide,
.top_row.hide,
.next_row.hide {
    display: none;
}

.contact_info_box.open {
    display: block;
    overflow-y: scroll;
    height: 620px;
    padding-right: 10px;
}

.contact_info_box::-webkit-scrollbar {
    width: 7px;
}

.contact_info_box::-webkit-scrollbar-track {
    background: #000;
}

.contact_info_box::-webkit-scrollbar-thumb {
    background: #fff;
}

.contact_info_box::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.contact_info_box h5 {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-family: 'Bayon-Regular';
    margin-bottom: 10px;
    margin-top: 30px;
}

.common_row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.common_row label {
    font-family: 'Montserrat-Medium';
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
}

.common_row input,
.common_row input:focus {
    height: 50px !important;
    border: none !important;
    text-align: left;
    font-family: 'Montserrat-Medium';
    font-size: 16px;
    padding: 0 15px;
    background: #fff !important;
    width: 100%;
}

.common_row textarea,
.common_row textarea:focus {
    border: none;
    height: 100px;
    resize: none;
    font-family: 'Montserrat-Medium';
    font-size: 16px;
    padding: 0 15px;
    background: #fff !important;
}

.common_row .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 11px;
    margin-top: 5px;
}

.submit_row {
    margin-bottom: 40px;
}

.submit_row input {
    background: #1e1e1e;
    color: #fff !important;
    width: 120px;
    border: none !important;
    display: inline-block;
    text-align: center;
    height: 50px;
    font-family: 'Montserrat-Semibold';
    font-size: 15px;
    padding: 0 !important;
    border-radius: unset !important;
}

.submit_row input:hover,
.submit_row input:focus {
    background: #000 !important;
}

.reservation_wrap .wpcf7-response-output {
    position: absolute;
    bottom: 107px;
    left: 55px;
    right: 70px;
    border: none !important;
    color: #fff;
    font-size: 14px !important;
    line-height: 19px;
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7-response-output.hide {
    display: none;
}

.car_Wrap_row {
    display: flex;
    align-items: center;
}

.select_CarRow select,
.select_CarRow select:focus {
    height: 50px !important;
    border: none !important;
    text-align: center;
    font-family: 'Montserrat-Semibold';
    font-size: 16px;
    width: 140px;
    padding: 0 7px !important;
    background: #fff !important;
}

.select_CarRow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.select_CarRow label {
    color: #e22827;
    font-family: 'Montserrat-Medium';
    font-size: 16px;
    margin-bottom: 10px;
}

.hide_field_div {
    display: none !important;
}


/*.rv_frm_inner .screen-reader-response {
    display: none !important;
}*/

.reservation_attribute span.woocommerce-Price-amount.amount {
    display: none;
}


/*-------------start single page style---------------*/


/*.deposits-frontend-wrapper .deposits-input-wrapper,
.deposits-input-wrapper .pretty:first-child, .reservation_wrap p.price,
.postid-334 p.stock.in-stock,
.postid-334 .woocommerce-product-details__short-description,
.postid-334 .site_footer{ display: none; }*/

div#product-334 .woocommerce-product-gallery,
.postid-334 .site_footer,
.reservation_wrap .rv_heading+.price,
.deposits-input-wrapper .pretty {
    display: none;
}

.reservation_wrap .summary.entry-summary {
    float: none;
    width: 100% !important;
}

.reservation_wrap div#subtot {
    background: #1e1e1e;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 55;
    padding: 8px 55px 20px 55px;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 20px;
    line-height: 20px;
}

.deposits-frontend-wrapper {
    visibility: hidden;
    background: #1e1e1e;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    width: 100%;
    position: fixed;
    bottom: 46px;
    right: 0;
    z-index: 55;
    padding: 20px 55px 8px 55px;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 20px;
    line-height: 20px;
}

p.deposit-notice {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.excludes_taxx_next_btn p {
    color: #fff;
    font-size: 14px !important;
    padding-right: 15px;
}


/*button.single_add_to_cart_button.button.alt {
    display: none;
}*/

.excludes_taxx_next_btn {
    position: absolute;
    bottom: 160px;
    left: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.excludes_taxx_next_btn a.checkout_forward {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat-Bold';
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: #1e1e1e;
    padding: 0 25px;
    height: 40px;
    border-radius: 3px;
}

.excludes_taxx_next_btn a.checkout_forward:hover,
.excludes_taxx_next_btn a.checkout_forward:focus {
    background: #000 !important;
}

.join_bosonn {
    margin-bottom: 20px;
}

.reservation_wrap button.single_add_to_cart_button.button.alt {
    position: absolute;
    bottom: 155px;
    right: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    height: 40px;
}

.reservation_wrap button.single_add_to_cart_button.button.alt:hover,
.reservation_wrap button.single_add_to_cart_button.button.alt:focus {
    background: #000 !important;
}

.custom_plus_munis .quantity {
    border: 1px solid #fff;
    margin: 0 !important;
    display: flex;
}

.custom_plus_munis .quantity button {
    background: transparent !important;
    font-size: 30px;
    padding: 0;
    border: none;
    height: 50px !important;
    width: 70px !important;
}

.custom_plus_munis .quantity button:hover,
.custom_plus_munis .quantity button:focus {
    color: #fff;
}

.custom_plus_munis .quantity button.minus {
    border-right: 1px solid #fff;
}

.custom_plus_munis .quantity button.plus {
    border-left: 1px solid #fff;
    font-size: 24px;
}

.custom_plus_munis .quantity input {
    height: 50px !important;
    width: 70px !important;
    background: transparent;
    border: none;
    color: #fff;
}

.product_name_row h3 p {
    display: none;
}


/*.woocommerce ul.order_details li,
section.woocommerce-order-details h2,
.woocommerce-order p, .woocommerce-order a,
.woocommerce-order { color: #fff;}
*/

.woocommerce-product-details__short-description {
    margin-bottom: 20px;
}

.woocommerce-order,
form#order_review {
    margin-top: 70px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.woocommerce-order p {
    margin-bottom: 20px;
}

section.woocommerce-customer-details h2 {
    margin-top: 30px;
}

section.woocommerce-customer-details h2,
section.woocommerce-order-details h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.woocommerce-order td.woocommerce-table__product-name.product-name strong.product-quantity {
    display: none;
}

.woocommerce-order td.woocommerce-table__product-name.product-name p {
    display: none;
}

.woocommerce-order td.woocommerce-table__product-total.product-total,
.woocommerce-order td.woocommerce-table__product-name.product-name {
    text-align: center;
}

.woocommerce-order h4 {
    margin-bottom: 15px;
}

div#payment button#place_order,
table.woocommerce_deposits_parent_order_summary a.deposit-pay-button {
    padding: 0 25px !important;
    display: inline-block;
    height: 55px;
    line-height: 58px !important;
    margin-top: 15px;
}

div#payment button#place_order:hover,
div#payment button#place_order:focus,
a.woocommerce-button.button.deposit-pay-button:hover,
a.woocommerce-button.button.deposit-pay-button:focus {
    background: #000 !important;
    color: #fff !important;
    opacity: 0.8;
}

.car_row.car_signle {
    margin-top: 25px;
    padding: 15px 20px;
}

.car_row.car_signle h6 {
    text-transform: uppercase;
    font-family: 'Montserrat-Semibold';
    font-size: 15px;
    line-height: 16px;
    color: #fff;
}

.visibility {
    visibility: hidden;
}

.extra_value,
.auto-calculationn {
    background: #1e1e1e;
    max-width: 500px;
    width: 100%;
    position: fixed;
    bottom: 46px;
    right: 0;
    z-index: 55;
    padding: 20px 55px 8px 55px;
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 20px;
    line-height: 20px;
}

.regularPrice_inn {
    display: flex;
    justify-content: space-between;
}


/*------------- End single page style---------------*/

.address-field.update_totals_on_change span.woocommerce-input-wrapper {
    height: 50px;
    border: none;
    background: #fff !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 10px;
}

.ceck_custom_table_style {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    border: none !important;
}

.ceck_custom_table_style thead,
.ceck_custom_table_style tbody,
.ceck_custom_table_style tfoot tr.cart-subtotal,
.ceck_custom_table_style tfoot tr.order-duepay {
    display: none;
}

.ceck_custom_table_style tfoot {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.ceck_custom_table_style tfoot tr.order-total,
.ceck_custom_table_style tfoot tr.order-topay {
    display: flex;
    background: #1e1e1e;
    justify-content: space-between;
}

.ceck_custom_table_style tfoot tr.order-total {
    padding: 10px 55px 20px 55px;
}

.ceck_custom_table_style tfoot tr.order-topay {
    padding: 20px 55px 10px 55px;
}

.ceck_custom_table_style tfoot tr.order-total td,
.ceck_custom_table_style tfoot tr.order-topay td,
.ceck_custom_table_style tfoot tr.order-total th,
.ceck_custom_table_style tfoot tr.order-topay th {
    color: #e22927;
    font-family: 'Bayon-Regular';
    font-size: 20px;
    line-height: 20px;
    border: none;
    font-weight: normal;
    padding: 0
}

.ceck_custom_table_style tfoot tr.order-total td strong,
.ceck_custom_table_style tfoot tr.order-total th strong {
    font-weight: normal;
}