:root {
    --body-bg: #EDEDED;
    --side-space: 100px;
    --black: #1F1F1F;
    --fs-xs: 12px;
    --fs-sm: 16px;
    --fs-md: 18px;
    --fs-lg: 22px;
    --fs-xl: 28px;
    --fs-xxl: 32px;
    --fs-2lg: 36px;
    --fs-2xl: 40px;
    --fs-2xxl: 50px;
    --dfs-md: 50px;
    --dfs-lg: 70px;
    --dfs-xl: 90px;
    --dfs-xxl: 110px;
    --color-danger: #EA0A0B;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'lato';
    font-style: normal;
    font-weight: 100;
    src: local("Lato"), url(../fonts/Lato/Lato-Thin.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: italic;
    font-weight: 100;
    src: local("Lato"), url(../fonts/Lato/Lato-ThinItalic.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: normal;
    font-weight: 300;
    src: local("Lato"), url(../fonts/Lato/Lato-Light.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: italic;
    font-weight: 300;
    src: local("Lato"), url(../fonts/Lato/Lato-LightItalic.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: normal;
    font-weight: 400;
    src: local("Lato"), url(../fonts/Lato/Lato-Regular.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: italic;
    font-weight: 400;
    src: local("Lato"), url(../fonts/Lato/Lato-Italic.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: normal;
    font-weight: 700;
    src: local("Lato"), url(../fonts/Lato/Lato-Bold.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: italic;
    font-weight: 700;
    src: local("Lato"), url(../fonts/Lato/Lato-BoldItalic.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: normal;
    font-weight: 900;
    src: local("Lato"), url(../fonts/Lato/Lato-Black.ttf) format("truetype");
}

@font-face {
    font-family: 'lato';
    font-style: italic;
    font-weight: 900;
    src: local("Lato"), url(../fonts/Lato/Lato-BlackItalic.ttf) format("truetype");
}

body {
    margin: 0;
    padding: 0px;
    position: relative;
    font-size: var(--fs-md);
    font-family: lato;
    color: var(--black);
}

.side-space {
    padding: var(--side-space) !important;
}

.side-space-left {
    padding-left: var(--side-space) !important;
}

.side-space-right {
    padding-right: var(--side-space) !important;
}

.side-space-top {
    padding-top: var(--side-space) !important;
}

.side-space-bottom {
    padding-bottom: var(--side-space) !important;
}
.side-space-v {
    padding-left: var(--side-space) !important;
    padding-right: var(--side-space) !important;
}
.side-space-h {
    padding-top: var(--side-space) !important;
    padding-bottom: var(--side-space) !important;
}

@media (max-width: 1350px){
    .side-space {
        padding: var(--side-space) 50px !important;
    }
    .side-space-v {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .side-space-left {
        padding-left: 50px !important;
    }

    .side-space-right {
        padding-right: 50px !important;
    }

    .side-space-top {
        padding-top: 50px !important;
    }

    .side-space-bottom {
        padding-bottom: 50px !important;
    }
}
@media (max-width: 992px){
    .side-space {
        padding: var(--side-space) 20px !important;
    }
    .side-space-v {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .side-space-left {
        padding-left: 20px !important;
    }

    .side-space-right {
        padding-right: 20px !important;
    }
}

.super-hero-section {
    width: 100%;
    height: 500px;
    position: relative;
}
.sub-page-super-hero-section {
    width: 100%;
    height: 500px;
    position: relative;
}

.home-super-hero {
    background-image: url(../media/home-page-super-hero.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}
.about-super-hero {
    background-image: url(../media/about-page-super-hero.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.hero-section {
    width: 100%;
}

.navigation {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 50px;
    z-index: 100;
}
.navigation>.row{
    padding: 10px 50px;
}
    .navigation.has-bg > .row {
        background-color: #D9D9D991;
        border-radius: 10px;
    }
.navigation-menu-btn{
    display:none;
    padding: 5px 7px;
    font-size: var(--fs-lg);
    border: none;/*1px solid #999;*/
    border-radius: 6px;
    cursor: pointer;
    background-color: transparent; /*rgba(0,0,0,0.1);*/
}
    .navigation-menu-btn:hover {
        background-color: rgba(0,0,0,0.05);
    }
@media (max-width: 992px) {
    .navigation{
        padding: 10px 0px;
    }
        .navigation > .row {
            padding: 10px 20px;
        }
    .navigation-menu-btn{
        display: block;
    }
    .navigation.has-bg > .row{
        background-color: transparent !important;
    }
}

.row {
    --mo-gutter-x: 1.5rem;
    --mo-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}


.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}


@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }


    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }


    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }


    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }
}
@media (min-width: 1550px) {
    .col-xxxl {
        flex: 1 0 0%;
    }

    .row-cols-xxxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}
.text-center{
    text-align: center;
}

.logo {
    position: absolute;
    height: 35px;
    width: auto;
    position: static;
}

.navigation-menu {
    display: block;
    text-decoration: none;
    padding: 10px 0;
    margin: 0px;
}

    .navigation-menu > li {
        display: inline-block;
        padding: 0px 10px;
        margin: 0px;
    }

        .navigation-menu > li > a {
            color: #444;
            text-decoration: none;
            font-size: var(--fs-sm);
            text-transform: uppercase;
            font-weight: 600;
            border-bottom: 2px solid transparent;
        }

            .navigation-menu > li > a.current-page {
                border-bottom: 2px solid #444;
            }

            .navigation-menu > li > a:hover {
                border-bottom-color: #444;
                transition: .5s;
            }

@media (max-width: 992px){
    .navigation-menu{
        display: none;
        background-color: rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        padding: 10px;
        position: absolute;
        left: 0;
        top: 10px;
        width: 100%;
        border-radius: 6px;
    }
        .navigation-menu.show{
            display: block;
        }
        .navigation-menu > li {
            display: block;
            text-align: left;
            margin: 2px 0px;
            width: 100%;
            padding: 0px 10px;
        }
        .navigation-menu > li > a {
            width: 100% !important;
            padding: 5px 0px;
            display: block;
            border-color: transparent !important;
        }
            .navigation-menu > li > a:hover,
            .navigation-menu > li > a.current-page
            {
                color: var(--color-danger);
            }
}

.hero-text {
    display: block;
    width: auto;
    position: absolute;
}

    .hero-text.bottom-left {
        bottom: 20px;
        left: 20px;
    }

/*home page*/
.revolutionizing-the {
    font-size: var(--fs-2xl);
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.ppf-industry {
    font-size: var(--dfs-xxl);
    text-transform: uppercase;
    background: #BFF098;
    background: linear-gradient(to right, #BFF098 0%, #6FD6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.super-hero-super-text {
    font-size: var(--dfs-xl);
    text-transform: uppercase;
    background: #BFF098;
    background: linear-gradient(to right, #BFF098 0%, #6FD6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.super-hero-text {
    font-size: var(--fs-2xl);
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

@media (max-width: 992px) {
    .super-hero-super-text {
        font-size: var(--dfs-lg);
    }
    .super-hero-text {
        font-size: var(--fs-xxl);
    }
}
@media (max-width: 768px){
    .super-hero-super-text {
        font-size: var(--fs-2xl);
    }
    .super-hero-text {
        font-size: var(--fs-lg);
    }
}

.about-super-hero-text {
    font-size: var(--dfs-lg);
    text-transform: uppercase;
    background: #BFF098;
    background: linear-gradient(to right, #BFF098 0%, #6FD6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.paint-brown, .paint-green, .paint-yellow {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /*height: 356px;*/
    position: relative;
}
/*@media (max-width: 1199px){
    .paint-brown, .paint-green, .paint-yellow{
        height: 670px;
    }
}*/

.paint-brown {
    background-image: url(../media/bg-paint-brown.png);
}

.paint-green {
    background-image: url(../media/bg-paint-green.png);
}

.paint-yellow {
    background-image: url(../media/bg-paint-yellow.png);
}

.paint-text {
    /*width: 100%;
    position: absolute;
    bottom: 40px;
    text-align: center;
    font-size: var(--fs-lg);
    color: #444;*/
    position: absolute;
    left: 0;
    bottom: -20px;
    background-color: #fff;
    border-top-right-radius: 20px;
    width: 60%;
    padding: 10px 15px;
    font-size: var(--fs-md);
}

.body-bg {
    background-color: var(--body-bg);
}

.home-what-we-do-section {
    display: block;
    width: 100%;
}

    .home-what-we-do-section > .home-what-we-do {
        display: block;
        text-transform: uppercase;
        font-size: var(--fs-md);
        font-weight: 700;
        margin-bottom: 30px;
    }

    .home-what-we-do-section > .home-full-service {
        display: block;
        text-transform: uppercase;
        font-size: var(--fs-2xxl);
        font-weight: 700;
        color: var(--black);
    }
    .home-what-we-do-section > .home-full-service > p{
        display: block;
        padding: 0px;
        margin: 0px;
    }

    .home-what-we-do-section > .home-detailing-for-cars {
        display: block;
        text-transform: uppercase;
        font-size: var(--fs-2xxl);
        font-weight: 700;
        background: #EA0A0B;
        background: linear-gradient(to left, #EA0A0B 0%, #FF4311 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .home-what-we-do-section > .home-what-we-do-welcome {
        display: block;
        font-size: var(--fs-lg);
        margin-top: 20px;
    }

    .home-what-we-do-section > .home-what-we-do-description {
        display: block;
        font-size: var(--fs-md);
        margin-top: 20px;
    }

    .home-what-we-do-section > .home-what-we-do-contact {
        display: block;
        position: relative;
        margin-top: 40px;
    }

        .home-what-we-do-section > .home-what-we-do-contact > .home-what-we-do-contact-number {
            display: block;
            padding-left: 70px;
            padding-top: 20px;
            padding-bottom: 20px;
            font-size: var(--fs-md);
        }

        .home-what-we-do-section > .home-what-we-do-contact > .home-what-we-do-contact-icon {
            display: block;
            position: absolute;
        }

.what-we-do-images {
    display: block;
    width: 700px;
    position: relative;
    float: right;
    margin: 0px;
}

@media (max-width: 1650px){
    .what-we-do-images{
        width: 600px;
    }
}
@media (max-width: 1440px){
    .what-we-do-images{
        width: 500px;
    }
}

@media (max-width: 1300px){
    .what-we-do-images{
        width: 400px;
    }
}

@media (max-width: 1199px){
    .what-we-do-images{
        width: 400px;
    }
}
@media (max-width: 992px){
    .what-we-do-images{
        width: 100%;
    }
}

.home-what-we-do-img-1 {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    height: 100%;
}

.home-what-we-do-img-2 {
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .home-what-we-do-img-2 {
        display: block;
        width: 100%;
    }
}
.key-service {
    text-align: center;
    height: 250px;
    background-color: #fff;
    position: relative;
}
    .key-service > .key-service-icon{
        display: block;
        position: absolute;
        left: 0;
        bottom: 55%;
        text-align: center;
        width: 100%;
    }
    .key-service > .key-service-title {
        display: block;
        position: absolute;
        width: 100%;
        text-align: center;
        left: 0;
        top: 55%;
        font-size: var(--fs-lg);
        font-weight: 600;
        text-transform: uppercase;
    }

.auto-brands {
    background-color: #EA0A0B;
}
.brand-image {
    
    width: 100%;
    text-align: center;
    height: 200px;
    vertical-align: central;
    justify-content: center;
    align-items: center;
    display: flex;
}
    .brand-image > img {
        width: 120px;
        opacity: .4;
        margin: auto;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.who-we-are-section {
    width: 100%;
    text-align: center;
    vertical-align: central;
    justify-content: center;
    align-items: center;
    display: flex;
}
    .who-we-are-section > div {
        display: block;
    }

.home-who-we-are {
    font-size: var(--fs-md);
    text-transform: uppercase;
    color: #000;
    display: block;
    padding-bottom: 30px;
    font-weight: 700;
}
.home-who-we-are-desc {
    font-size: var(--fs-2xxl);
    color: #17181A;
    display: block;
}
.home-who-we-are-desc>p{
    display: block;
    margin:0;
    padding: 0px;
}
.person-name {
    font-size: var(--fs-md);
    display: block;
    padding-top: 50px;
}
.person-position {
    display: block;
    font-size: var(--fs-md);
    color: #96999F;
}


.testimonial {
    border: 1px solid #BFBBBB;
    border-radius: 6px;
    padding: 20px;
    margin: 0 20px 40px;
    font-size: var(--fs-md);
    font-weight: 300;
}
    .testimonial strong {
        font-size: var(--fs-md);
        font-weight: 400;
    }
/*.owl-item:not(:last-child) {
    margin-right: 40px !important;
}*/

.owl-theme .owl-controls .owl-page span{
    height: 8px !important;
    width: 8px !important;
}

.testimonial-image {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.testimonial-user-name {
    display: block;
    margin-top: 13px;
    font-size: var(--fs-md);
}
.testimonial-user-position {
    display: block;
    font-size: var(--fs-sm);
    color: #96999F;
}
.testimonial-user-org{
    width: 80px;
}


.owl-theme .owl-controls {
    margin-top: 20px;
}

    .owl-theme .owl-controls .owl-page span {
        background: #ccc;
        opacity: 1;
        transition: all 0.4s ease 0s;
    }

    .owl-theme .owl-controls .owl-page.active span,
    .owl-theme .owl-controls.clickable .owl-page:hover span {
        background: #EA0A0B;
    }

.home-about-section {
    background-image: url(../media/home-about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}

.home-about {
    width: 100%;
    text-align: left;
    vertical-align: central;
    justify-content: left;
    align-items: center;
    display: flex;
    height: 100%;
}
.home-about>div{
    display: block;
}

.home-about-text {
    font-size: var(--fs-2xl);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.btn-danger {
    border-radius: 6px;
    background-color: #EA0A0B;
    border: none;
    outline: none;
    padding: 13px 20px;
    color: #fff;
    font-size: var(--fs-md);
    cursor: pointer;
    text-decoration: none;
}

.home-contact-bg-img {
    background-image: url(../media/home-contact-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1199px){
    .home-contact-bg-img{
        height: 660px;
    }
}

.home-contact-contact-us {
    display: block;
    padding-bottom: 20px;
    font-size: var(--fs-md);
    text-transform: uppercase;
}

.center-div-parent {
    width: 100%;
    text-align: left;
    vertical-align: central;
    justify-content: left;
    align-items: center;
    display: flex;
    height: 100%;
}
.center-div-child{
    width: 100%;
}

form{
    width: 100%;
}

.home-contact-any-question {
    display: block;
    font-size: var(--fs-xxl);
    text-transform: uppercase;
}


.user-box {
    position: relative;
}

    .user-box input {
        width: 100%;
        padding: 10px 0;
        font-size: var(--fs-md);
        margin-bottom: 30px;
        border: none;
        border-bottom: 1px solid #333;
        outline: none;
        background: transparent;
    }

    .user-box label {
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        font-size: var(--fs-md);
        color: #333;
        pointer-events: none;
        transition: .5s;
    }

    .user-box input:focus ~ label,
    .user-box input:valid ~ label {
        top: -20px;
        left: 0;
        color: #333;
        font-size: var(--fs-sm);
    }

form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #333;
    font-size: var(--fs-md);
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
}


.page-footer {
    background-image: url(../media/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-logo{
    width: 230px;
    padding: 10px 20px;
    border-radius: 6px;
}
.footer-office-label,
.footer-links-label {
    font-size: var(--fs-lg);
    display: block;
    padding-bottom: 10px;
}

.footer-office-location {
    font-size: var(--fs-md);
    display: block;
    color: #FFFEFE;
}
.footer-office-contact {
    font-size: var(--fs-md);
    display: block;
    padding-top: 3px;
    color: #FFFEFE;
}

.footer-links-item {
    display: block;
    color: #FFFEFE;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 5px;
}
.footer-links-item:hover{
    text-decoration: underline;
}

.footer-copyright-org-name {
    font-size: var(--fs-md);
    color: #D2D3D5;
}
.footer-copyright-text {
    font-size: var(--fs-md);
    color: #D2D3D5;
    font-weight: 300;
}

.social-links {
    display: inline-block;
    margin: 5px;
    width: 50px;
    height: 50px;
    border: 1px solid #FFFEFE26;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
    vertical-align: central;
    padding: 10px 5px;
    font-size: 10px;
    margin-top: 5px;
}
.social-links>img{
    width: 100%;
    height: 100%;
}


/*about page*/
.hero-section-items{
    display: block;
}

.text-upper{
    text-transform: uppercase;
}

.hero-section-title{
    font-size: var(--fs-xl);
    margin-bottom: 30px;
}
.text-bold{
    font-weight: 700;
}
.text-light{
    font-weight: 300;
}
.text-danger {
    color: #EA0A0B;
}
.hero-section-label{
    font-size: var(--fs-xxl);
    margin-bottom: 30px;
}
.hero-section-desc{
    margin: 10px 0;
    font-size: var(--fs-lg);
    font-weight: 300;
    display: block;
}
.hero-section-footer{
    display: block;
    margin-top: 70px;
    margin-bottom: 20px;
}

.hero-section-bg-image {
    background-image: url(../media/about-page-img-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.bg-image-radious{
    border-radius: 10px;
}

.pAbout-sWhatWeDo-label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: var(--fs-md);
}
.pAbout-sWhatWeDo-desc{
    display: block;
    font-size: var(--fs-md);
}
.pAbout-sWhatWeDo-image {
    background-image: url(../media/about-page-img-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

@media (max-width: 991px){
    .pAbout-sWhatWeDo-image {
        height: 600px;
        margin-left: -15px;
    }
}

@media (max-width: 992px){
    .hide-on-mobile{
        display: none;
    }
}

/*contact*/
.contact-super-hero {
    background-image: url(../media/contact-page-super-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.pContact-sForm-send-us-message-text{
    font-size: var(--fs-2xl);
    font-weight: 300;
    display:block;
    margin-top: 30px;
}
.pContact-sForm-send-us-message-text-desc{
    display:block;
    margin: 10px 0px;
}

.pContact-sForm-contact-details {
    width: 100%;
    background-color: #17181A;
    border-top: 6px solid #EA0A0B;
    padding: 30px;
    color: #fff;
}

.pContact-sForm-contact-details-title{
    font-size: var(--fs-xl);
    display: block;
    margin-bottom: 10px;
}
.pContact-sForm-contact-details-address{
    display: block;
}

.testimonials-super-hero {
    background-image: url(../media/about-page-super-hero.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}
.product-super-hero {
    background-image: url(../media/product-page-super-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.product-groups{
    display: block;
    float: right;
    text-decoration: none;
    margin:0;
}
.product-groups>li{
    display: inline-block;
    padding: 8px 15px;
    border-radius: 2px;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 5px;
}
.product-groups>li:not(:last-child){
    margin-right: 3px;
}
    .product-groups > li.active {
        background-color: #EA0A0B !important;
        color: #fff;
    }

.product-item{
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 40px;
}
.product-item-image{
    width: 100%;
}
.product-item-info{
    position: absolute;
    left: 0;
    bottom: -20px;
    background-color: #fff;
    border-top-right-radius: 20px;
    width: 60%;
    padding: 10px 15px;
    font-size: var(--fs-sm);
}
    .product-item-info.has-shadow {
        box-shadow: 1px 1px 2px 0px rgba(227, 227, 227, 1);
    }
.hide{
    display: none !important;
}

.product-image-viewer{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}
.image-viewer{
    width: 60%;
    min-height: 200px;
    background-color: #fff;
    position: relative;
}
#image-viewer-image{
    width: 100%;
}
.image-viewer-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 20px;
    background-color: #96999F;
    color: #fff;
    font-size: var(--fs-xl);
    border-radius: 0 0 0 6px;
    cursor: pointer;
}
    .image-viewer-close-btn:hover {
        color: #EA0A0B;
    }

#image-viewer-details{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 0 6px 0 0;
}

span>p{
    display: block;
    margin: 0;
    padding: 0;
}
p{
    padding: 5px 0;
    margin: 0;
}

.hero-super-text {
    display: block;
    font-size: var(--fs-2xxl);
    color: var(--black);
}
@media (max-width: 1350px){
    .hero-super-text {
        font-size: var(--fs-2xl);
    }
}
@media (max-width: 1150px){
    .hero-super-text {
        font-size: var(--fs-2lg);
    }
}
@media (max-width: 992px){
    .hero-super-text {
        font-size: var(--fs-xxl);
    }
}
@media (max-width: 768px){
    .hero-super-text {
        font-size: var(--fs-xl);
    }
}


.icon-dropdown{
    display: block;
    position: relative;
    float: left;
    padding: 2px 0px;
}
.icon-dropdown-btn{
    display: block;
    margin: 0;
    padding: 0px;
    font-size: 30px;
    border: none;
    background-color: transparent;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}
.icon-dropdown-btn:hover,
.icon-dropdown-btn:focus{
    color: var(--color-danger)
}
.icon-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    margin-top: 10px;
    background-color: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 5px;
    border-radius: 6px;
}
.navigation.has-bg .icon-dropdown-menu {
    background-color: #D9D9D991;
}
.icon-dropdown-menu.show {
    display: block;
}
.icon-dropdown-menu-item {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    text-decoration: none;
    color: #444;
    text-align: left;
    white-space: nowrap;
}
.icon-dropdown-menu-item.current{
    color: var(--color-danger);
}
.icon-dropdown-menu-item:hover{
    color: var(--color-danger);
}