/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

::marker {
  display: none;
}

.header {
  /* transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary); */
}

.sticked-header-offset {
  /* margin-top: 70px; */
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6); */
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    /* font-size: 12px;
    line-height: 0;
    margin-left: 5px; */
  }

  .navbar > ul > li > a:before {
    /* content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s; */
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    /* visibility: visible;
    width: 100%; */
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    /* color: #fff; */
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    /* padding: 10px 0; */
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #000000;
    /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
    transition: 0.3s;
    border-radius: 0px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
    border-bottom: 1px solid #2b2b2b;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    /* font-weight: 600; */
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    /* font-size: 12px; */
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .dropdown-active li a {
    padding: 5px 20px;
    border-bottom: 1px solid #2b2b2b;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /* font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7); */
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    /* font-size: 12px;
    line-height: 0;
    margin-left: 5px; */
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #000000;
    border: 1px solid #2f2f2f;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 5px;
    top: 10px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9996;
  }
}
/* =============== Signika Negative Family =============== */

/* vietnamese */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvqhr6no.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvuhr6no.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvWhrw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvqhr6no.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvuhr6no.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvWhrw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvqhr6no.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvuhr6no.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvWhrw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvqhr6no.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvuhr6no.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvWhrw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvqhr6no.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvuhr6no.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Signika Negative";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/signikanegative/v21/E218_cfngu7HiRpPX3ZpNE4kY5zKYvWhrw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============== Cavet Family =============== */
/* cyrillic-ext */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIipYSxP.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIGpYSxP.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin-ext */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIupYSxP.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9eIWpYQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============== Dancing Family =============== */
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/dancingscript-variablefont_wght.woff2") format("woff2"),
    url("../fonts/dancingscript-variablefont_wght.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* =============== End Dancing Family =============== */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
    url("../fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
  font-display: swap;
}

[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* :root {
  --theme-color: #bf0c0d !important;
} */
:root {
  --theme-color: #599f2e !important;
}

:root {
  /* --theme-color:linear-gradient(to bottom, #d9f287 0%,#7ddd23 100%); */
}

body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Signika Negative", sans-serif;
  font-size: 16px;
}

/* h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Mono", monospace;
} */
/* .roboto {
  font-family: "Roboto", sans-serif;
} */
h2 {
  font-size: 40px;
  line-height: 46px;
}

.text-red {
  color: var(--theme-color) !important;
}

.bg-red {
  background-color: var(--theme-color) !important;
}

.text-white-50 {
  color: #c3c3c3 !important;
}

.text-black-50 {
  color: #4b4b4b !important;
}

.bi-plus::before {
  content: "\f4fe";
}

.bi-x::before {
  content: "\f62a";
}

.bi-dash::before {
  content: "\f2ea";
}

.bi-telephone-inbound::before {
  content: "\f5b8";
}

.bi-arrow-right::before {
  content: "\f138";
}

.bi-chevron-double-right::before {
  content: "\f280";
  font-size: 16px;
}

.bi-facebook::before {
  content: "\f344";
}

.bi-google::before {
  content: "\f3f0";
}

.bi-linkedin::before {
  content: "\f472";
}

.bi-twitter::before {
  content: "\f5ef";
}

.bi-chevron-right::before {
  content: "\f285";
}

.bi-plus::before {
  content: "\f4fe";
}

.bi-list::before {
  content: "\f479";
}

.bi-gear-fill::before {
  content: "\f3e2";
}

.bi-person-fill::before {
  content: "\f4da";
}

.bi-telephone-fill::before {
  content: "\f5b4";
}

.bi-envelope-fill::before {
  content: "\f32c";
}

.bi-geo-alt-fill::before {
  content: "\f3e7";
}

.bi-arrow-right-circle-fill::before {
  content: "\f133";
}

.bi-person::before {
  content: "\f4e1";
}

.bi-r-square::before {
  content: "\f811";
}

.bi-envelope::before {
  content: "\f32f";
}

.bi-chat::before {
  content: "\f268";
}

.bi-instagram::before {
  content: "\f437"
}

/* ================= Header  ================ */

.webp header {
  background-image: url(../images/pattern-black.webp);
}

.no-webp header {
  background-image: url(../images/pattern-black.png);
}

header {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0px;
  z-index: 9999;
  background-repeat: repeat;
}

header .nav-item .nav-link {
  font-size: 18px;
  line-height: 24px;
}

header .phone {
  width: 287px;
  cursor: pointer;
  text-align: center;
  padding: 12px 0 10px 0;
  background-repeat: repeat;
  background-color: var(--theme-color);
}

header .phone small {
  font-size: 23px;
}

header .header-text {
  cursor: auto;
}

header .phone .phone-text {
  font-size: 20px;
  line-height: 12px;
  transform: translateX(-12px);
  font-family: "Caveat", cursive;
}

marquee {
  font-size: 26px;
  line-height: 31px;
  /* background-image: linear-gradient(to left, #ffb400, #fdb406, #ffb400); */
  background-color: #ffb400;
  color: black;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  background-image: url(../images/pattern-black.png);
}

.webp .dot {
  background-image: url(../images/red-leaf.webp);
}

.no-webp .dot {
  background-image: url(../images/red-leaf.png);
}

.dot {
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: -1;
  background-size: 100% 100%;
}

.webp header .phone {
  background-image: url(../images/pattern-green.webp);
}

.no-webp header .phone {
  background-image: url(../images/pattern-green.png);
}

header .phone a {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
}

.fixed-top {
  background-color: #000;
  background-image: url(../images/pattern-black.png);
  box-shadow: 0px 0px 18px 0px rgba(50, 50, 50, 0.18);
  animation-name: moveHeader;
  animation-duration: 2s;
}

.dropdown-divider {
  border-bottom: 1px solid #484848 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--theme-color) !important;
}

.dropdown-menu {
  border-top: 2px solid var(--theme-color);
  background-color: #000;
}

.dropdown-item {
  padding: 10px;
}

.navbar-toggler {
  border-radius: 0 !important;
}

.navbar-toggler-icon {
  background-image: url(../images/toggle-bar.svg);
}

.navbar .nav-item:hover .dropdown-menu {
  visibility: visible;
}

.navbar .nav-item .dropdown-menu {
  visibility: hidden;
  display: block;
}

.dropdown-toggle::after {
  border-top: none !important;
  border-left: none !important;
}

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

@keyframes moveHeader {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}

header .nav-item .nav-link:before {
  position: absolute;
  content: "";
  background-color: var(--theme-color);
  width: 0px;
  height: 2px;
  left: 0;
  bottom: -5px;
  visibility: hidden;
  transition-property: width;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}

header .nav-item .nav-link:hover:before {
  visibility: visible;
  width: 25px;
}

/* =================== Banner  ================== */
.webp .banner {
  background-image: url("../images/banner.webp");
}

.no-webp .banner {
  background-image: url("../images/banner.png");
}

.banner {
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

#background {
  width: 100%;
}

.banner aside span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #abd158 !important;
}

h1 {
  font-size: 45px;
  line-height: 51px;
  text-shadow: 0 0 8px #000;
}

.banner aside .make-card {
  background-color: rgba(0, 0, 0, 0.7);
  margin: -1px;
  border: 1px solid #575757;
  padding: 5px 0;
  background-image: url(../images/pattern-black.png);
}

/*hover effect*/
.banner aside .make-card img {
  transition-property: all;
  transition-duration: 0.5s;
}

.banner aside .make-card:hover img {
  transform: scale(1.15);
}

.banner-utility {
  background-color: #000 !important;
  height: 50%;
}

.aside-row {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner aside .make-card img {
  width: 67px;
}

.banner aside .col-sm-4:nth-child(7) .make-card img {
  width: 105px;
  height: 67px;
  object-fit: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgb(255 255 255);
  content: var(--bs-breadcrumb-divider, "/");
}

.mclaren img {
  width: 105px !important;
  height: 67px;
  object-fit: cover;
}

.video-parent {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  /* z-index: 9; */
}

.video-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.demo a {
  position: absolute;
  bottom: 90px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 20px/1 "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}

#scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.breadcrumb.bg-black {
  background-color: #111111 !important;
}

/* ======================== Reg Number ====================== */

.webp .reg-number {
  background-image: url(../images/reg-pattern.webp);
}

.no-webp .reg-number {
  background-image: url(../images/reg-pattern.png);
}

.reg-number {
  background-color: #fff;
  background-position: center;
  background-repeat: repeat;
  background-size: auto;
  animation: animatedBackground 20s linear infinite;
  -ms-animation: animatedBackground 20s linear infinite;
  -moz-animation: animatedBackground 20s linear infinite;
  -webkit-animation: animatedBackground 20s linear infinite;
}

.webp .reg-number input {
  background-image: url("../images/gb.webp");
}

.no-webp .reg-number input {
  background-image: url("../images/gb.png");
}

.reg-number input {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffcb05;
  outline: 0;
  height: 72px;
  font-size: 36px;
  border: transparent;
  border-radius: 5px;
}

.reg-number input:-webkit-autofill,
.reg-number input:-webkit-autofill:hover,
.reg-number input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: 0 0 0px 40rem #fff inset;
  background-image: url("../images/gb.webp") !important;
}

.reg-number button {
  font-size: 24px;
  height: 72px;
  line-height: 50px;
  max-width: 330px;
  padding: 10px;
  background-color: #104391 !important;
  /* background-image: url(../images/pattern-green.png); */
  /* box-shadow: 0px 8px 5px #a4c1db; */
}

.reg-number button span {
  border: 1px solid #fff;
  /* padding: 10px 30px; */
  border-radius: 5px;
}

::placeholder {
  color: #000000;
}

@keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 0;
  }
}

/* =============== Button Animation ================ */

.pulse {
  animation-name: pulse;
  animation-duration: 1.5s;
}

.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* ====================== Our services  ====================== */

.webp .services {
  background-image: url(../images/pattern-black.webp);
}

.no-webp .services {
  background-image: url(../images/pattern-black.png);
}

.services {
  background-repeat: repeat;
  background-color: #000;
}

.services .news-block .image-box .image img {
  border: 2px solid #4a4a4a;
}

.services .news-block .content-box {
  position: relative;
  left: 0;
  margin: -20px auto;
  /* background-color: #fff; */
  padding: 0 0px 10px 0px;
  /* border: 3px solid var(--theme-color); */
}

.services .content-box .list-group .list-group-item a {
  color: #3c3c3c;
}

.services .content-box .list-group .list-group-item a span {
  float: right;
}

.webp .content-box a.card-link {
  background-image: url(../images/pattern-green.webp);
}

.no-webp .content-box a.card-link {
  background-image: url(../images/pattern-green.png);
}

.services .content-box a.card-link {
  padding: 13px;
  font-size: 20px;
  line-height: 26px;
  margin: 0 28px;
  margin-top: -30px;
  background-repeat: repeat;
}

.services .content-box a:hover span {
  transition: 0.5s ease-in-out;
  display: inline-block;
  transform: translateX(5px);
}

.services .heading-divider {
  /* display: inline-block; */
  border-bottom: 4px solid #3e3e3e;
  width: 90px;
  height: 4px;
  margin: 0px auto;
  top: 10px;
}

.services .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 4px;
  width: 20px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: services-heading-move 5s infinite linear;
  animation: services-heading-move 5s infinite linear;
}

@keyframes services-heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(-1px);
  }
}

/* =========================  Repairs  ====================== */
.webp .repair {
  background-image: url(../images/pattern-black.webp);
}

.no-webp .repair {
  background-image: url(../images/pattern-black.png);
}

.repair {
  background-color: #111111;
}

.repair a {
  border-left: 3px solid #81b961ac;
  background-color: #373737bc !important;
  overflow: hidden;
  color: #c3c3c3 !important;
}

.repair a span {
  font-size: 20px;
  line-height: 26px;
}

.repair a::after {
  position: absolute;
  content: "";
  right: -30px;
  top: 0px;
  color: #fff;
  transform: skew(316deg, 0deg);
  border-left: 59px solid #81b961ac;
  height: 100%;
}

.repair a::before {
  position: absolute;
  content: "\f285";
  right: 5px;
  bottom: 6px;
  color: #fff;
  font-family: bootstrap-icons !important;
  z-index: 1;
  font-size: 16px;
  line-height: 22px;
}

.repair .heading-divider {
  /* display: inline-block; */
  border-bottom: 4px solid #3e3e3e;
  width: 90px;
  height: 4px;
  margin: 0px auto;
  top: 10px;
}

.repair .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 4px;
  width: 20px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: repair-heading-move 5s infinite linear;
  animation: repair-heading-move 5s infinite linear;
}

@keyframes repair-heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(-1px);
  }
}

/* ================ Gallery  ============== */

.webp .gallery-1 {
  background-image: url(../images/pattern-black.webp);
}

.no-webp .gallery-1 {
  background-image: url(../images/pattern-black.png);
}

.gallery-1 {
  background-color: black !important;
}

.gallery-1 .gallery-text p {
  font-size: 19px;
  line-height: 25px;
}

.gallery .heading-divider {
  /* display: inline-block; */
  border-bottom: 4px solid #3e3e3e;
  width: 90px;
  height: 4px;
  margin: 0px auto;
  top: 8px;
}

.gallery .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 4px;
  width: 20px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: gallery-heading-move 5s infinite linear;
  animation: gallery-heading-move 5s infinite linear;
}

@keyframes gallery-heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(-1px);
  }
}

/* ======================= Long Cta ==================== */
.long-cta {
  background-image: url(../images/pattern-green.png),
    linear-gradient(60deg, transparent 41%, var(--theme-color) 20%);
  background-repeat: repeat;
}

.long-cta strong {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}

.long-cta img {
  /* position: relative;
  z-index: -1; */
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.long-cta .long-cta-phone {
  /* background-color: #000; */
  border: 1px solid #fff;
  width: 200px;
  height: 53px;
  font-size: 20px;
  line-height: 35px;
}

.long-cta .long-cta-btn small {
  font-size: 22px;
}

.long-cta .long-cta-btn {
  width: 240px;
  height: 55px;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  background-size: 300%;
  transition: all 0.5s;
}

.long-cta-btn:hover {
  color: #fff !important;
  background-position: -74%;
}

.long-cta-btn {
  background-image: linear-gradient(90deg, #fff 50%, #111 30%);
}

/* =================== Review ==================== */
.owl-carousel .owl-nav {
  display: none !important;
  text-align: center !important;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-nav {
  display: none;
}

.webp .review {
  background-image: url(../images/map.webp);
}

.no-webp .review {
  background-image: url(../images/map.png);
}

.review {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.review h3 {
  font-size: 1.25rem;
}

.review .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 50px;
}

.review .owl-dots button {
  /*background-color: #ccc !important;*/
  margin: 0 21px !important;
  height: 90px !important;
  width: 90px;
  border-radius: 50rem !important;
}

.review .owl-dots button.active {
  border: 2px solid var(--theme-color);
  transform: scale(1.3);
}

.review .owl-carousel .item p {
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
  cursor: pointer;
}

.review .owl-carousel .item small {
  color: #8e8e8e;
  font-size: 16px;
  line-height: 22px;
}

.review-img img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50rem;
  margin-top: -48px;
}

.review .heading-divider {
  /* display: inline-block; */
  border-bottom: 4px solid #3e3e3e;
  width: 90px;
  height: 4px;
  margin: 0px auto;
  top: 10px;
}

.review .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 4px;
  width: 20px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: review-heading-move 5s infinite linear;
  animation: review-heading-move 5s infinite linear;
}

@keyframes review-heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(-1px);
  }
}

/* ===================== Content ====================== */
.content .heading-divider {
  /* display: inline-block; */
  border-bottom: 4px solid #3e3e3e;
  width: 90px;
  height: 4px;
  margin: 0px auto;
  top: -38px;
}

.content .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 4px;
  width: 20px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: content-heading-move 5s infinite linear;
  animation: content-heading-move 5s infinite linear;
}

@keyframes content-heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(-1px);
  }
}

.content p {
  font-size: 18px;
  line-height: 28px;
  color: #535353;
}

.content ul li {
  font-size: 18px;
  line-height: 30px;
}

/* ====================== About us   ================= */

.about .position-absolute {
  top: 50%;
  right: 0;
  z-index: 999;
  transform: translate(0, -50%);
}

.about .position-relative.about-img::after {
  content: "";
  position: absolute;
  top: 17px;
  right: -20px;
  z-index: -1;
  bottom: -85px;
  width: 323px;
  height: 573px;
  background-image: url(../images/about-3.png);
}

.about p {
  font-size: 18px;
  line-height: 35px;
  color: #787878;
}

.about .list-group-item::before {
  content: "\f633";
  position: absolute;
  top: 8px;
  left: 0px;
  font-family: bootstrap-icons !important;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 19px;
  line-height: 25px;
}

/* ======================== Contact Us   ======================== */
.contact .input-group {
  height: 50px;
}

.webp .contact button {
  background-image: url(../images/pattern-green.webp);
}

.no-webp .contact button {
  background-image: url(../images/pattern-green.png);
}

/* .webp .content {
  background-image: url(../images/pattern-black.webp);
}
.no-webp .content {
  background-image: url(../images/pattern-black.png);
} */
.contact button {
  font-size: 18px;
  line-height: 24px;
}

.contact .c-text {
  font-size: 48px;
  line-height: 54px;
  margin-top: 15px;
}

.contact .text-body {
  font-size: 35px;
  line-height: 41px;
}

.contact .contact-detail-info {
  background-color: #f3f3f3;
}

.contact .location .list-group-item.address::before {
  position: absolute;
  content: "\F3E8";
  background-color: rgb(136 199 108 / 22%);
  font-family: bootstrap-icons !important;
  left: -20px;
  color: var(--theme-color);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 28px;
  border-radius: 50rem;
  transform: translate(10px, -8px);
}

.contact .location .list-group-item.phone::before {
  position: absolute;
  content: "\F5B8";
  background-color: rgb(136 199 108 / 22%);
  font-family: bootstrap-icons !important;
  left: -20px;
  color: var(--theme-color);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 28px;
  border-radius: 50rem;
  transform: translate(10px, -8px);
}

.contact .location .list-group-item.email::before {
  position: absolute;
  content: "\f32f";
  background-color: rgb(136 199 108 / 22%);
  font-family: bootstrap-icons !important;
  left: -20px;
  color: var(--theme-color);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 28px;
  border-radius: 50rem;
  transform: translate(10px, -8px);
}

.contact .text span {
  color: #787878;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact a,
.contact p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

/* ==================== Signup ===================== */
/* .signup-form {
} */

.signup-form .logo {
  width: 150px;
}

.list-group .signup-bullets::before {
  content: "\F26A";
  position: absolute;
  color: #235d91;
  left: -15px;
  font-size: 19px;
  font-family: bootstrap-icons !important;
}

.no-webp .box-banner {
  background-image: url(../images/engine-replacement.png);
}

.webp .box-banner {
  background-image: url(../images/engine-replacement.webp);
}

.box-banner {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 674px;
}

.list-group .signup-bullets span {
  font-size: 19px;
  line-height: 25px;
}

.signup-form .input-group {
  height: 55px;
}

.signup-form h3 {
  font-size: 24px;
  line-height: 30px;
  min-height: 60px;
}

.signup-form .logo-text {
  font-size: 12px;
  line-height: 18px;
  margin-top: -3px;
}

.signup-form button span {
  font-size: 24px;
  line-height: 30px;
}

.signup-form .input-group-text {
  font-size: 24px;
  line-height: 34px;
}

.signup-form input::placeholder {
  color: #212529;
  font-size: 18px;
  line-height: 24px;
}

.border-here {
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(100deg, transparent, #e5e5e527) 1;
}

.signup-footer {
  background-color: #0e3455;
}

.bullets .list-group-flush .list-group-item:before {
  position: absolute;
  content: "\F26F";
  top: 8px;
  left: 5px;
  font-family: bootstrap-icons !important;
  color: var(--theme-color);
  font-size: 20px;
}

.bullets .list-group-flush {
  font-size: 18px;
  line-height: 24px;
}

.bullets .list-group .list-group-item.border-end {
  /* border-bottom: 1px solid #8d92953b !important; */
}

.bullets .list-group .list-group-item.border-end {
  border-right: none !important;
}

.bullets .item {
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-top: 2px solid var(--theme-color) !important;
  cursor: pointer;
}

.bullets .owl-carousel .owl-item img {
  display: block;
  width: 67px;
  margin: 0px auto;
  padding: 5px 0;
}

.bullets .owl-nav {
  display: block !important;
}

.bullets .owl-dots {
  display: none !important;
}

.bullets .owl-carousel .owl-nav button.owl-next,
.bullets .owl-carousel .owl-nav button.owl-prev {
  background: #000 !important;
  color: #707070 !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  border-radius: 0.25rem !important;
  font-size: 26px !important;
  margin: 35px 5px 0 5px;
}

/* .bullets .owl-carousel .owl-item:nth-child(2) img {
  object-fit: cover;
  width: 105px;
  height: 67px;
} */
/* ====================== Footer ======================= */
.webp footer {
  background-image: url(../images/pattern-black.webp);
}

.no-webp footer {
  background-image: url(../images/pattern-black.png);
}

footer {
  background-color: #111111;
  background-repeat: repeat;
}

footer p {
  font-size: 15px;
  line-height: 25px;
}

.footer-copy {
  background-color: #000000;
}

footer .list-inline .social-item a {
  background: #363739;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 20px;
  border-radius: 50rem;
}

footer .list-inline .social-item:hover {
  transform: rotate(360deg);
}

footer .list-inline .social-item {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

footer .list-inline .social-item a:hover {
  background-color: var(--theme-color);
}

footer .hover .list-group-item a span:hover {
  color: var(--theme-color) !important;
}

footer strong {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}

footer .contact .list-group-item {
  font-size: 15px;
  line-height: 21px;
}

.footer-copy small {
  font-size: 16px;
  line-height: 22px;
}

footer .heading-divider::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #3e3e3e;
  top: -40px;
  left: 0;
}

footer .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  height: 3px;
  width: 10px;
  border-radius: 0;
  background-color: var(--theme-color);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(40px);
  }

  100% {
    transform: translateX(-1px);
  }
}

/* =============== Back to top ================== */

#button::after {
  content: " \f148";
  font-family: bootstrap-icons !important;
  color: #fff;
  vertical-align: -webkit-baseline-middle;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

#button {
  display: inline-block;
  background-color: #111111;
  border: 2px solid var(--theme-color);
  width: 40px;
  height: 40px;
  text-align: center;
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
}

/* ==================== Whatsapp ==================== */
#whatsapp::after {
  color: #fff;
  content: "\f618";
  font-family: bootstrap-icons;
}

#whatsapp {
  opacity: 1;
  width: 40px;
  right: 30px;
  height: 40px;
  bottom: 80px;
  z-index: 1000;
  font-size: 24px;
  position: fixed;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #25d366;
  box-shadow: 3px 4px 3px #999;
}

/* ============================ Responsive  ========================= */

@media screen and (max-width: 1199px) {
  header img {
    width: 160px;
  }

  header .phone a {
    font-size: 28px;
    line-height: 34px;
  }

  header .nav-item .nav-link {
    font-size: 16px;
    line-height: 22px;
  }

  h1 {
    font-size: 43px;
    line-height: 49px;
  }

  h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .review .owl-carousel .item p {
    font-size: 28px;
    line-height: 34px;
  }

  .long-cta strong {
    font-size: 22px;
    line-height: 28px;
  }

  .long-cta button {
    width: 160px;
    height: 50px;
    font-size: 18px;
    line-height: 24px;
  }

  footer .footer-logo {
    width: 160px;
  }

  footer .list-inline .social-item a {
    padding: 8px 10px;
    font-size: 16px;
    line-height: 18px;
  }

  video {
    top: 39%;
  }

  .video-parent {
    min-height: 70vh;
  }

  .contact .location .list-group-item.phone::before,
  .contact .location .list-group-item.email::before,
  .contact .location .list-group-item.address::before {
    transform: translate(10px, 0px);
  }

  .long-cta {
    background-color: var(--theme-color);
  }
}

@media screen and (max-width: 991px) {
  header .navbar .navbar-nav .nav-link {
    border-bottom: 1px solid #5d5a5a;
  }

  /* .video-child {
    display: none;
  } */
  /* .banner {
    background-color: #3e3e3e;
    height: auto;
  } */
  /* .webp .banner {
    background-image: none !important;
  } */
  /* .banner::before {
    display: none;
  } */
  .banner {
    background: #000000;
    height: auto;
    background-position: center;
    background-size: cover;
    padding-bottom: 20px;
  }

  .navbar-toggler {
    border-radius: 0 !important;
    padding: 0 !important;
    border: none;
  }

  .navbar-toggler-icon {
    width: 1.7em;
    height: 1.7em;
  }

  header .navbar .container-fluid {
    padding-left: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  header,
  .fixed-top {
    background: #3e3e3e;
  }

  /* .banner aside .make-card {
    border: 1px solid #959595;
  } */
  /* .video-parent {
    display: none;
  } */
  .aside-row {
    transform: none !important;
    top: 60px;
    left: 0;
    position: static !important;
  }

  header {
    position: static;
  }

  /* aside {
    padding-top: 20px;
    padding-bottom: 30px;
    background-image: url(../images/pattern-black.png);
  } */
  .review h3 {
    margin-bottom: 0 !important;
  }

  .content picture {
    text-align: center;
  }

  .content picture::after {
    top: -24px !important;
    right: 105px !important;
    width: 55% !important;
  }

  .content picture::before {
    top: -20px !important;
    right: 110px !important;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 44px;
  }

  h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .gallery-1 .gallery-text p {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 0;
  }

  .review .owl-carousel .item p {
    font-size: 24px;
    line-height: 30px;
  }

  .review-img img {
    width: 90px !important;
    height: 90px !important;
    margin-top: -38px;
  }

  .review .owl-dots button {
    height: 80px !important;
    width: 80px;
  }

  header .phone .phone-text {
    transform: translateX(-8px);
  }

  header .phone small {
    font-size: 21px;
  }

  .reg-number input {
    height: 65px;
    font-size: 34px;
    max-width: 435px;
  }

  /* .long-cta a {
    margin: 0px auto;
    display: block;
  } */
  video {
    top: 35%;
  }

  .video-parent {
    min-height: 40vh;
  }

  .contact .location .list-group-item.phone::before,
  .contact .location .list-group-item.email::before,
  .contact .location .list-group-item.address::before {
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 60px;
  }

  .contact .c-text {
    font-size: 40px;
    line-height: 46px;
    margin-top: 5px;
  }

  .contact .text-body {
    font-size: 30px;
    line-height: 36px;
  }

  .about .position-relative.about-img::after {
    background-image: none;
    right: 0;
  }

  .thanks img {
    width: 300px;
  }

  .error img {
    width: 250px;
  }

  .content picture::after,
  .content picture::before {
    /* display: none; */
  }

  .content p,
  .content ul li {
    font-size: 16px;
    line-height: 24px;
  }

  /* .services .heading-divider,
  .gallery .heading-divider,
  .review .heading-divider,
  .repair .heading-divider {
    top: 3px;
  } */
}

@media screen and (max-width: 575px) {

  header img,
  footer .footer-logo {
    width: 130px;
  }

  header .phone {
    width: 240px;
  }

  header .phone a {
    font-size: 25px;
    line-height: 31px;
  }

  header .phone .phone-text {
    transform: translateX(-6px);
    font-size: 18px;
  }

  header .phone small {
    font-size: 18px;
  }

  .banner aside .make-card img {
    width: 55px;
  }

  .banner aside .col-sm-4:nth-child(7) .make-card img {
    width: 80px;
    height: 55px;
    object-fit: cover;
  }

  h1 {
    font-size: 26px;
    line-height: 32px;
  }

  h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .bullets h4 {
    font-size: 16px;
    line-height: 22px;
  }

  .reg-number h5 {
    font-size: 16px;
    line-height: 22px;
  }

  .signup-form input::placeholder {
    font-size: 16px;
    line-height: 22px;
  }

  .reg-number input {
    height: 60px;
    max-width: 400px;
    font-size: 34px;
  }

  .reg-number button {
    font-size: 22px;
    height: 61px;
    line-height: 40px;
  }

  .bullets .list-group-flush {
    font-size: 15px;
    line-height: 21px;
  }

  .bullets .owl-carousel .owl-nav button.owl-next,
  .bullets .owl-carousel .owl-nav button.owl-prev {
    margin: 20px 5px 0 5px;
  }

  .long-cta .long-cta-btn small {
    font-size: 18px;
  }

  .long-cta .long-cta-btn {
    width: 190px;
    height: 50px;
    font-size: 20px;
    line-height: 35px;
  }

  .long-cta .long-cta-phone {
    width: 175px;
    height: 50px;
    font-size: 18px;
    line-height: 34px;
  }

  .reg-number {
    background-image: none !important;
    animation: animatedBackground 0s linear infinite;
  }

  .gallery-1 img {
    text-align: center;
  }

  .review .owl-dots {
    margin-top: 30px;
  }

  footer strong::after {
    top: 30px;
  }

  .aside-row .col-12 {
    padding: 0;
  }

  video {
    top: 58%;
  }

  .video-parent {
    min-height: 22vh;
  }

  .video-child {
    height: 100%;
  }

  .contact .location .list-group-item.phone::before,
  .contact .location .list-group-item.email::before,
  .contact .location .list-group-item.address::before {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }

  footer .heading-divider::before,
  footer .heading-divider::after {
    top: -10px;
  }

  .signup-form h3 {
    font-size: 18px;
    line-height: 24px;
    min-height: 0;
  }

  .signup-form .input-group-text {
    font-size: 20px;
    line-height: 30px;
  }

  .box-banner {
    height: 300px;
  }

  .border-here {
    border: 0;
  }

  .contact .c-text {
    font-size: 35px;
    line-height: 41px;
    margin-top: 0px;
  }

  .contact .text span {
    margin-bottom: 0px;
  }

  .thanks img {
    width: 200px;
  }

  .thanks p {
    font-size: 15px;
    line-height: 21px;
  }

  .error img {
    width: 180px;
  }

  .signup-form .singup-img {
    height: 300px !important;
  }

  .bm-logo {
    width: 50px;
  }

  .logo .signup-logo {
    width: 120px !important;
  }

  .box-style {
    padding: 5px 10px 15px 10px !important;
  }

  .signup-form .input-group {
    height: 40px;
  }

  .signup-form button span {
    font-size: 20px;
    line-height: 30px;
  }

  .content .heading-divider {
    top: -10px;
  }

  .repair .heading-divider,
  .gallery .heading-divider {
    top: 8px;
  }

  .box-style {
    background: transparent !important;
    border: 0 !important;
  }

  marquee {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 479px) {

  header img,
  footer .footer-logo {
    width: 110px;
  }

  header .phone a {
    font-size: 20px;
    line-height: 26px;
  }

  header .phone .phone-text {
    transform: translateX(-4px);
    font-size: 14px;
  }

  header .phone small {
    font-size: 16px;
  }

  header .phone {
    width: 195px;
    padding: 5px 0 5px 0;
  }

  .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .reg-number input {
    height: 60px;
    max-width: 350px;
    font-size: 30px;
  }

  .reg-number button {
    font-size: 22px;
    height: 62px;
    line-height: 40px;
    max-width: 300px;
  }

  .review .owl-carousel .item p {
    font-size: 20px;
    line-height: 26px;
  }

  .review .owl-dots button {
    height: 70px !important;
    width: 70px;
  }

  .review-img img {
    width: 80px !important;
    height: 80px !important;
    margin-top: -28px;
  }

  .review .owl-dots {
    margin-top: 30px;
  }

  .footer-copy small {
    font-size: 14px;
  }

  .contact .c-text {
    font-size: 30px;
    line-height: 36px;
  }

  .contact span {
    font-size: 14px;
    line-height: 20px;
  }

  .contact p,
  .contact a {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .contact button {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0px;
  }

  .long-cta .long-cta-btn {
    width: 165px;
    height: 45px;
    font-size: 18px;
    line-height: 30px;
  }

  .long-cta .long-cta-phone {
    width: 150px;
    height: 45px;
    font-size: 15px;
    line-height: 30px;
  }

  .error img {
    width: 150px;
  }

  .content h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .content h3,
  .long-cta strong {
    font-size: 20px;
    line-height: 26px;
  }

  .long-cta strong span {
    font-size: 14px;
    line-height: 20px;
  }

  .content h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .long-cta a {
    width: 170px;
    height: 45px;
    font-size: 18px;
    line-height: 30px;
  }

  .about p {
    font-size: 16px;
    line-height: 30px;
  }
}

@media screen and (max-width: 384px) {

  header img,
  footer .footer-logo {
    width: 90px;
  }

  /* header .phone {
    width: 190px;
    padding: 10px 0 10px 10px;
  } */
  h1 {
    font-size: 24px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .reg-number input {
    height: 55px;
    max-width: 300px;
    font-size: 28px;
  }

  .reg-number button {
    font-size: 20px;
    height: 57px;
    line-height: 35px;
    max-width: 250px;
  }

  .banner aside span {
    font-size: 16px;
    line-height: 22px;
  }

  .review .owl-carousel .item p {
    font-size: 18px;
    line-height: 24px;
  }

  .review-img img {
    width: 59px !important;
    height: 59px !important;
    margin-top: -8px;
  }

  .review .owl-dots button {
    height: 55px !important;
    width: 55px;
    margin: 0px 18px !important;
  }

  .long-cta button {
    width: 155px;
    height: 45px;
    font-size: 17px;
    line-height: 24px;
  }
}