@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: var(--display-200);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-black);
  background-color: var(--color-white);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-transform: unset;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 30px 1.25rem;
}

.nav-bg-right {
    width: 29%;
    background-image: url(image/header-bg2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 89.9px;
}

.brand {
  margin-top: 10px;
  padding: 0 15px;
  width: auto;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-green-300);
}

img.img-logo {
    width: 120px;
}
img.img-responsive {
  margin-bottom: 20px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1.8rem;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  border-bottom: 1px solid #53ca6c;
  background-color: white;
  height: 90px;
}
.quick-link-div{
    padding-left:30px;
}
.qr-code-align{
    float:right;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: all 0.45s ease-in-out;
}
a.menu-link:hover {
  background: #2e3f53;
  color: #fff;
  box-shadow: 6px 0 5px -3px #e0182b, -6px 0 5px -3px #e0182b;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin: 1.25rem;
}
.menu-link {
  transition: all 0.3s ease;
  border-radius: 15px !important;
  margin-top: 25px;
  background: #53ca6c;
  color: #fff;
  padding: 7px 5px !important;
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
.menu-block {
    margin-top: 10px;
  display: inline-block;
  font-family: inherit;
  font-size: var(--display-100);
  font-weight: 500;
  line-height: 1.25;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  white-space: nowrap;
  margin-left: auto;
  padding: 0 1.35rem;
  border-radius: 3rem;
  color: var(--color-white);
  background-color: var(--color-green-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
.col-md-9 {
  width: 100%;
}
div#testimo {
  margin: 0px 0px 0px 0px;
  width: 100%;
}
.col-md-3 {
  width: 100%;
}
.col-md-2 {
  width: 100%;
  margin-bottom: 15px;
}
.col-md-5 {
  width: 100%;
}
.form_body {
  padding: 60px 0px 40px 0;
}
.col-sm-6 {
  width: 100%;
}
.column2 {
  width: 100%;
}
.column1 {
  width: 100%;
}
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: 45%;
    height: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 1.75rem;
         column-gap: 0.6rem;
         align-items: center;
    margin: 0 auto;
  }
  .menu-block {
    margin-left: 2rem;
  }
  a.menu-block {
    margin-left: 0px;
}
.menu-link {
  text-align: center;
}
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  /* order: -1; */
  width: 2.5rem;
  height: auto;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 2px;
  margin: 6px auto;
  transform: rotate(0deg);
  background-color: black;
  transition: all 0.3s ease-in-out;
}
.bg-black-333 {
  background-color: #181818 !important;
}
.nav1 {
    display: block;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
      .nav1 {
        display: none;
        visibility: hidden;
    }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s ease-in-out;
}
.overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 66.66666667%;
  padding-right: 15px;
  padding-left: 15px;
}
.column1 {
  float: left;
  width: 33.33333333%;
  padding-right: 15px;
  padding-left: 15px;
}
.column2 {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.section-content {
    margin: 50px 0 0;
}

p {
  line-height: 1.7;
  color: #666666;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 10px;
}

h2.maple-title {
  font-weight: 700 !important;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.42857143;
  font-size: 2rem;
  margin-bottom: 10px;
}

h3.maple-text {
  color: #52ca6c;
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.42857143;
}

ul.list {
  list-style: outside none none;
  margin-top: 13px;
  color: #666666;
    font-size: 14px;
}

ul.list li {
  margin: 5px 0;
}

ul.list li:before {
  border: none;
  color: #a9a9a9;
  content: "\f0a9";
  display: inline-block;
  font-family: fontawesome;
  font-size: 12px;
  margin-right: 10px;
  padding: 0;
}

section.divider {
  background-color: #f5f5f5;
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.container::before {
  display: table;
  content: " ";
}

img.tire-img {
  text-align: center;
  margin: 0 auto;
}

h1.tire-logo {
  margin-top: 50px;
  margin-bottom: 0;
}

h2.m-tire {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.42857143;
  color: #333333;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}

a.btn {
  color: #fff;
  background-color: #52ca6c;
  border-color: #52ca6c;
  margin-top: 20px !important;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
}

a.btn:hover {
  color: #fff;
  background-color: #101622;
  border-color: #0d111b;
}

section.bg-form {
  background-image: url(image/from-bg.webp);
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat-y;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
}

section.bg-form::before {
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  background-color: rgba(17, 17, 17, 0.6);
}
.container.form-pd {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.form_body {
  padding: 60px 40px 40px 0;;
}
h3.form-title {
  margin-bottom: 40px !important;
  margin-top: 0!important;
  font-weight: 500 !important;
  border-bottom: 1px dotted #d3d3d3;
  position: relative;
  padding-bottom: 10px;
  color: #fff !important;
  font-size: 24px;
  line-height: 1.42857143;
}
span.text-theme-form {
  color: #ff1d33;
  font-weight: 600;
  line-height: 1.42857143;
}
h3.form-title::after {
  background: #52ca6c;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 50px;
}
h3.call-heading {
  margin-top: 5px !important;
  font-weight: 600 !important;
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
}
.col-sm-12 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
}
.col-sm-6 {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
}
.col-sm-3 {
  width: 25%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
.col-md-9 {
  width: 75%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
.col-md-3 {
  width: 25%;
  text-align: right;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
}
.container.gallery-top {
  padding: 0;
}
.form-group {
  margin-bottom: 30px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #5a3636;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  border-radius: 0;
  box-shadow: none;
  height: 45px;
}
.index-form {
  color: #FFE;
}
form label {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  max-width: 100%;
}
.form-group.submit {
  margin-top: 0;
  margin-bottom: 0;
}
button#btnservicessub {
  color: #fff;
  background-color: #52ca6c;
  border-color: #52ca6c;
  border-left: 4px solid #ff1d33 !important;
  font-size: 14px;
  padding: 10px 26px;
  line-height: 1.3333333;
}
.head-t {
  padding-left: 15px;
  padding-right: 15px;
}
section.gallery {
  background: #ff1d33 !important;
}
.call-to-action {
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 30px;
  padding-right: 15px;
  padding-left: 15px;
}
a.btn.gallery {
  font-size: 14px;
  padding: 10px 26px;
  margin-top: 5px !important;
  border-radius: 0;
}
i.fa.fa-angle-double-right.arrow-icon {
  margin-left: 10px !important;
  font-size: 16px !important;
}
footer#footer {
  background: #fafafa;
  background-color: rgba(17, 17, 17, 0.8);
  /*background-image:url('/images/footer-img.jpg');*/
  /*background-size: cover;*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/

}

.container.footer01 {
  padding: 20px 0;
}
/* .widget {
  margin-bottom: 30px;
} */
h5.widget-title {
  margin-bottom: 10px !important;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.42857143;
}
.col-md-3.foot-left {
  text-align: left;
}
.row.foot02 {
  margin-top: 30px;
  padding-right: 15px;
  padding-left: 15px;
}
.footer-text {
  color: #fff;
  line-height: 1.7;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
.col-md-2 {
  width: 16.66666667%;
  float: left;
}
.styled-icons.icon-bordered a {
  border: 1px solid #777777;
}
.quick-link{
    color:white !important;
}
.styled-icons.icon-sm a {
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  margin: 2px 7px 2px 0;
  width: 25px;
  float: left;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.widget .styled-icons li a {
  margin-bottom: 0;
}
#footer a {
  color: #808080;
}
.col-md-5 {
  width: 41.66666667%;
  float: left;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
  display: table-cell;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.form-control {
  border-radius: 0;
  box-shadow: none;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-addon, .input-group-btn {
  width: 1%;
  vertical-align: middle;
}
.bg-theme-color-2 {
  background: #ff1d33;
  padding: 3px 14px;
  line-height: 1.5;
  border-radius: 3px;
}
.input-group-btn:last-child>.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
img.img.img-responsive {
  width: 100%;
}
.col-md-12.col-sm-12.col-xs-12.set0 {
  margin: 0px !important;
  padding: 0px !important;
}
div#testimo {
  margin: -190px 0px 0px 275px;
  width: 75%;
  position: relative;
    min-height: 1px;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.col-md-5.col-sm-5.col-xs-12.demo {
  padding-right: 30px;
  padding-left: 30px;
}
p#textdes {
  color: white;
}
.widget.dark .widget-title {
  color: #fff;
}
.free_listing {
  position: absolute;
  width: 100px;
  height: 100px;
  right: 10px;
  bottom: 350px;
  transform: translateY(80%);
  animation: vertically 2s linear infinite alternate;
}
@keyframes vertically {
  0% {
      transform: translateY(80%);
  }
  100% {
      transform: translateY(0%);
  }
  }
  #wpSlideOutTabs {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999999;
}
#wpSlideOutTabs .wpso-photo {
  background: url(image/photogallery-icon.png) 2px no-repeat #38c061;
}
#wpSlideOutTabs .wpso-fb {
  background: url(image/fb.png) 2px no-repeat #38c061;
}
#wpSlideOutTabs .wpso-twit {
  background: url(image/google-plus.png) 2px no-repeat #38c061;
}
#wpSlideOutTabs .wpso-yt {
  background: url(image/youtube.png) 2px no-repeat #38c061;
}
#wpSlideOutTabs a {
  height: 39px;
  width: 38px;
  display: block;
  position: relative;
}
#wpSlideOutTabs li {
  list-style: none;
  height: 40px;
  width: 40px;
}
#wpSlideOutTabs a span {
  color: #f5f5f5;
  text-shadow: 1px 1px 0 #222;
}

#wpSlideOutTabs span {
  width: 0;
  right: 38px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  font-family: 'Myriad Pro', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.6px;
  white-space: nowrap;
  line-height: 39px;
  transition: all .25s ease-out;
}

#wpSlideOutTabs a:hover span{
    width: auto;
    padding: 0 20px;
    overflow: visible;
}
a.foot-read:hover {
  color: green !important;
  font-weight: 800 !important;
}

h5.testi-name {
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
}
/* .bg-black-333 {
  background-color: #181818 !important;
} */
.footer-bottom.bg-black-333 .container {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
p.font-11.text-black-777.m-0 {
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.font-11 {
  font-size: 11px !important;
}
/* KEYFRAME DECLARATIONS */
@keyframes fade-animation-1 {
    0%, 25%, 100% {
        opacity:0
    }
    3%, 22% {
        opacity: 1;
    }
}
@keyframes fade-animation-2 {
    0%, 25%, 50%, 100% {
        opacity:0
    }
    28%, 47% {
        opacity: 1;
    }
}
@keyframes fade-animation-3 {
    0%, 50%, 75%, 100% {
        opacity:0
    }
    53%, 72% {
        opacity: 1;
    }
}
@keyframes fade-animation-4 {
    0%, 75%, 100% {
        opacity:0
    }
    78%, 97% {
        opacity: 1;
    }
}

@-webkit-keyframes fade-animation-1 {
    0%, 25%, 100% {
        opacity:0
    }
    3%, 22% {
        opacity: 1;
    }
}
@-webkit-keyframes fade-animation-2 {
    0%, 25%, 50%, 100% {
        opacity:0
    }
    28%, 47% {
        opacity: 1;
    }
}
@-webkit-keyframes fade-animation-3 {
    0%, 50%, 75%, 100% {
        opacity:0
    }
    53%, 72% {
        opacity: 1;
    }
}
@-webkit-keyframes fade-animation-4 {
    0%, 75%, 100% {
        opacity:0
    }
    78%, 97% {
        opacity: 1;
    }
}

.border-left-theme-color-2-6px {
    border-left: 6px solid #ff1d33 !important;
}
.tp-caption {
  padding-left: 30px !important;
  padding-right: 30px !important;
  color: #fff !important;
}
.bg-dark-transparent {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.bg-theme-colored-transparent, .piechart-block {
  background-color: rgba(32, 44, 69, 0.75) !important;
}
.btn-theme-colored {
  color: #fff;
  background-color: #52ca6c;
  border-color: #52ca6c;
}
.border-right-theme-color-2-6px {
  border-right: 6px solid #ff1d33 !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
}
a.btn.btn-colored.btn-lg.btn-flat.btn-theme-colored.btn-theme-colored.border-right-theme-color-2-6px.pl-20.pr-20 {
  border-radius: 0!important;
  margin-top: 0 !important;
}
a.btn.btn-default.btn-circled.btn-transparent.pl-20.pr-20{
  margin-top: 0 !important;
}
div#rs-3-layer-2 {
  color: black!important;
}
.font-raleway {
  font-family: 'Raleway', sans-serif;
}
.text-uppercase {
  text-transform: uppercase;
}
span.tp-bullet-image{  
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  position: relative;
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center center;
}
.metis .tp-bullet:hover .tp-bullet-title {
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1;
}
.metis .tp-bullet-title {
  position: absolute;
  bottom: 65px;
  display: inline-block;
  left: 50%;
  background: #000;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 10px 30px;
  -webkit-border-radius: 4px;
  -webkit-transition: all 0.3s;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
  opacity: 0;
  white-space: nowrap;
}
.metis .tp-bullet-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  bottom: -8px;
}
.tires-slider {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 30px;
}
img#page-banner {
  margin-bottom: 0px;
}
.bg-contain {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.column3 {
  float: left;
  width: 30.7%;
      margin-right: 15px;
    margin-left: 15px;
    padding-bottom: 60px !important;
    padding-top: 40px !important;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.about-title {
  color: #fff !important;
  font-size: 20px;
}
h4.package-type {
  margin-top: 20px !important;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  font-size: 18px;
}
p.about-textprice {
  color: #fff;
}
.list-dashed > li {
  border-bottom: 1px dashed #d3d3d3 !important;
  margin-bottom: 7px;
  padding-bottom: 7px;
}
strong.rate {
  font-weight: 700;
  font-size: 24px;
}
a.btn.btn-default.btn-circled {
  padding-left: 20px!important;
  padding-right: 20px!important;
  margin-top: 0!important;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
a.btn.btn-default.btn-circled:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.column3:hover {
  transform: translateY(-5px);
}
section#pricing .container {
  padding-top: 50px!important;
  padding-bottom: 50px!important;
}
.col-md-6 {
  width: 50%;
  float: left;
} 
.line-bottom {
  border-bottom: 1px dotted #d3d3d3;
  position: relative;
  margin-bottom: 20px;
  margin-top: 0;
  padding-bottom: 10px;
}
h4.line-bottom {
font-size: 20px !important;
font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
}
h4.line-bottom.sec-1 {
  font-size: 20px!important;
}
h4.line-bottom.mb-20.cont-page{
    margin-top:5px;
}
i.fa.fa-phone.call-icon {
    padding: 15px;
    border-radius: 25px;
    background: orange;
    color: white !important;
    font-size: 25px !important;
}
i.fa.fa-whatsapp.call-icon {
    padding: 15px;
    border-radius: 25px;
    background: green;
    color: white !important;
    font-size: 25px !important;
}
i.fa.fa-envelope.call-icon {
    padding: 15px;
    border-radius: 25px;
    background: maroon;
    color: white !important;
    font-size: 25px !important;
}

.line-bottom:after {
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 50px;
  background: #52ca6c;
}
iframe#fitvid0 {
    width: 100%;
    height:280px;
}
iframe#fitvid1 {
    width: 100%;
    height:280px;
}
.containerpict {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: auto;
  text-align: center;
}
.tires-slider {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 30px;
}
.tires-slider h1 {
  font-size: 35px;
  margin-top: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
}
.rowpict {
  width: 50%;
  margin-top: 20px;
}
.mask {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 585px;
  margin-left: 11px;
}
.h1 {
  font-size: 25px !important;
  background: #32c4f396;
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: 0 !important;
  width: 585px;
  margin: auto;
  margin-bottom: 10px
}
.col-md-8 {
  width: 66.66666667%;
  float: left;
}
.col-md-4 {
  width: 33.33333333%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
img.img.img-responsive.tires-page {
  margin-bottom: 0;
}
h4.tire-text {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.42857143;
  color: #333333;
  font-weight: 600 !important;
  font-size: 20px !important;
  margin-top: 10px;
  margin-bottom: 10px;
}
.col-md-6.tires-01 {
  padding-right: 5px !important;
}
.col-md-6.tires {
  padding-left: 5px !important;
}
.bg-lighter {
  background-color: #f7f7f7 !important;
}
.text-theme-colored {
  color: #52ca6c !important;
}
h3.text-theme-colored.title.line-bottom {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  font-size: 24px;
  margin-top: 20px;
}
.text-theme-color-2, .work-gallery .gallery-bottom-part .title {
  color: #ff1d33;
}
.container.tires-40 {
  padding-top: 40px;
}
.container.tire-client {
  padding-bottom: 30px !important;
  padding-top: 50px !important;
}
.gallery-isotope.grid-5 .gallery-item {
  width: 20%;
}
.col-md-12 {
  width: 100%;
}
section#gallery {
  padding-right: 15px;
  padding-left: 15px;
}
.gallery-isotope.gutter .gallery-item {
  padding-right: 3px;
  padding-bottom: 5px;
}
.col-md-7 {
  width: 58.33333333%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
.col-md-5 {
  width: 41.66666667%;
  padding-right: 15px;
  padding-left: 15px;
}
span.text-theme-color-2.font-weight-700 {
  font-weight: 700 !important;
}
h3.line-bottom.text-theme-colored.tire-form {
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 40px !important;
  margin-top: 0!important;
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
}
.tire-form {
  color: #333333;
}
.border-left-theme-color-2-4px {
  border-left: 4px solid #ff1d33 !important;
  font-size: 14px;
    padding: 10px 26px;
}
.btn-theme-colored:hover {
  color: #fff;
  background-color: #101622;
  border-color: #0d111b;
}
.cont-top {
  padding-top: 50px !important;
}
.layer-overlay::before {
  /* background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0; */
    content: " ";
    height: 100%;
    left: 0;
    position: initial;
    top: 0;
    width: 100%;
    z-index: 0;
}
/* .layer-overlay.overlay-white-6::before {
  background-color: rgba(255, 255, 255, 0.6);
} */
.divider .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.bg-deep {
  background-color: #f1f1f1 !important;
  padding: 30px !important;
  margin-bottom: 20px !important;
}
.icon-box.left a {
  margin-right: 30px;
  padding: 0;
}
.media-body, .media-left, .media-right {
  display: table-cell;
  vertical-align: top;
}
i.fa.fa-map-o {
  color: #52ca6c !important;
  font-size: 25px;
}
.media-body strong {
  line-height: 1.7;
  color: #666666;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.col-md-4.contact-page {
  padding-left: 0;
  padding-right: 0;
}
h3.line-bottom.mt-0.mb-20.cont-page {
  margin-left: 15px;
  margin-right: 15px;
}
h3.line-bottom.mt-0.mb-20.cont-page {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  font-size: 24px;
}
.form-group.cont-form.message-form {
  margin-right: 15px;
  margin-left: 15px;
}
.form-group.but-form {
  width: 100%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}
i.fa.fa-phone {
  color: #52ca6c !important;
  font-size: 25px;
}
i.fa.fa-envelope-o {
  color: #52ca6c !important;
  font-size: 25px;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 75%);
    color: white;
    display: grid;
    font-size: 32px;
}
.horline {
    width: 400px;
    margin: auto;
    border: 2px solid white;
}
.centered p {
    font-size: 25px;
    color: white;
}
.w3-sand, .w3-hover-sand:hover {
    color: #000!important;
    background-color: #fdf5e6!important;
}
.offersrow b {
    font-size: 40px;
    font-weight: 700;
    color: #000!important;
}
.offerimg {
    width: 150px;
}
.offersrow span {
    font-size: 25px;
    color: #000!important;
}
#buynow {
    width: 100px;
    height: 50px;
    margin: auto;
    border-radius: 10px;
        color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    padding: 5px !important;
    border: 1.6px solid #235580;
}
#buynow a {
    color: white;
    font-size: 15px;
}
div#dotborder {
    padding-top: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.mt-10.mb-10.maplelogos {
    display: flex;
    justify-content: center;
    column-gap: 115px;
}
.mapleimg {
    border-radius: 15px;
    width: 170px;
}
div#dotborder p {
    font-size: 18px;
    color: #000;
    text-align: center;
}
.mt-10.mb-20 strong {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}
/* @media screen and (max-width: 1440px) {
.free_listing {
  bottom: 100px;
}
} */
@media screen and (max-width: 1440px) {
.free_listing {
  bottom: 270px!important;
}
}
@media screen and (max-width: 1024px) {
  .slideshow-container {
    margin: -190px 0px 0px 250px!important;
}
.navbar{
  column-gap: 0rem;
}
.menu {
  width: 100%
}
.menu-link {
  margin-top: 0;
}
.navbar{
  align-items: center;
}
.testimonial-slider ul.slider {
  height: 155px;
}
div#testimo {
  width: 70%;
}
.mapleimg {
  width: 100px;
}
.centered {
  top: 15%;
}
.column3 {
  width: 30.2%;
}
.gallery-item.wheel.\30 1 {
  left: 192px!important;
}
.gallery-item.wheel.\30 2 {
  left: 385px!important;
}
.gallery-item.wheel.\30 3 {
  left: 580px!important;
}
.gallery-item.wheel.\30 4 {
  left: 775px!important;
}
.gallery-isotope.grid-5 .gallery-item {
  width: 18%;
}
}
@media screen and (max-width: 768px) {
.navbar{
  column-gap: 0rem;
}
.float{
display:none;
}
.menu {
  width: 100%
}
.col-md-9 {
  width: 65%;
}
.testimonial-slider ul.slider {
  height: 280px;
}
.centered {
  top: 60%;
}
.tires-slider {
  margin-top: 90px!important;
}
.centered {
  font-size: 22px;
}
.horline {
  width: 325px;
}
.centered p {
  font-size: 16px;
}
.mapleimg {
  width: 90px;
}
.mt-10.mb-10.maplelogos {
  column-gap: 70px;
}
.column3 {
  width: 29.2%;
}
.free_listing {
  bottom: 145px;
}
.gallery-item.wheel {
  position: inherit!important;
left: inherit!important;
top: inherit!important;
}
.gallery-item.wheel.\30 1 {
  left: inherit!important;
}
.gallery-item.wheel.\30 2 {
  left: inherit!important;
}
.gallery-item.wheel.\30 3 {
  left: inherit!important;
}
.gallery-item.wheel.\30 4 {
  left: inherit!important;
}
.col-md-7 {
width: 100%;
}
div#grid {
height: auto!important;
}
.gallery-isotope.grid-5 .gallery-item {
width: 100%;
}
.gallery-thumb img.img-fullwidth {
margin: 0 auto;
}
.slideshow-container {
  margin: -190px 0px 0px 175px!important;
}
}
@media screen and (max-width: 767px) {
  .Slidesbackground {
    margin: 0;
    padding: 0;
    height: auto;
}
#startupModal .modal-dialog {
  max-width: 330px!important;
}
.navbar {
  height: 62px;
}
.tires-slider {
  margin-top: 62px!important;
}
.free_listing {
  bottom: 220px;
}
.centered {
  top: 38%;
}
.centered {
  font-size: 12px;
}
.horline {
  width: 170px;
}
.centered p {
  font-size: 10px;
}
.row.offersrow {
  display: block!important;
}
.mt-10.mb-10.maplelogos {
  flex-wrap: wrap;
}
.w3-content {
  max-width: 80%!important;
}
.slideshow-container {
  display: inline!important;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .slideshow-container {
    display: inline!important;
  }
  .widget.dark{
      text-align:left !important;
  }
  .quick-link-div {
      padding-left:0px;
      color:white;
}
.qr-code-align{
    float:left;
}

  .Slidesbackground {
    margin: 0;
    padding: 0;
    height: auto!important;
}
    .gallery-item.wheel {
        position: inherit!important;
    left: inherit!important;
    top: inherit!important;
}
.col-md-7 {
    width: 100%;
}
div#grid {
    height: auto!important;
}
.gallery-isotope.grid-5 .gallery-item {
    width: 100%;
}
.gallery-thumb img.img-fullwidth {
    margin: 0 auto;
}
  .column {
    width: 100%;
  }
  .nav-bg-right {
    display: none;
}
.col-md-9 {
  width: 100%;
}
div#testimo {
  margin: 0px 0px 0px 0px;
  width: 100%;
}
.col-md-3 {
  width: 100%;
}
.col-md-2 {
  width: 100%;
  margin-bottom: 15px;
}
.col-md-5 {
  width: 100%;
}
.form_body {
  padding: 60px 0px 40px 0;
}
.col-sm-6 {
  width: 100%;
}
.column2 {
  width: 100%;
}
.column1 {
  width: 100%;
}
.navbar {
  align-items: center;
}
a.menu-block {
  margin-left: 0px;
}
.navbar {
  column-gap: 2.8rem;
}
.menu-link {
  text-align: center;
}
.column3 {
  width: 100%;
  margin-left: 0;
}
.col-md-6 {
  width: 100%;
  float: left;
}
.col-md-3 {
  padding-right: 0;
  padding-left: 0;
}
.rowpict {
  width: 100%;
}
.mask {
  margin-left: 0;
}
.h1{
  width: 100%;
}
.col-md-8 {
  width: 100%;
}
.col-md-4 {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}
.offersrow span {
  font-size: 20px;
}
.offersrow b {
font-size: 35px;
}
.get-cs {
  padding: 0!important;
}
}
.close-btn{
    display:none;
}
@media (max-width: 767px) {
    /* Show the close button for mobile views */
    .close-btn {
        display: block !important; /* Use !important to ensure it overrides other styles */
    }
}
@media screen and (max-width: 320px) {
  .slideshow-container {
    display: inline!important;
  }
  .get-cs {
    padding: 0!important;
}
.Slidesbackground {
  margin: 0;
  height: auto;
}
.testimonial-slider ul.slider {
  height: 350px;
}
.offersrow b {
  font-size: 28px;
}
.horline {
  width: 138px;
}
.centered {
  font-size: 10px;
}
.centered p {
  font-size: 8px;
}

}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
#startupModal .modal-dialog {
    max-width: 500px;
}
.modal-dialog {
    width: 600px;
    margin: 30px auto;
    position: relative;
}
.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.close-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
.close-icon img {
    width: 40px;
}
form {
    margin-bottom: 0;
}
.form-group.popup {
    background: #f5f5f5;
    padding: 20px 25px 25px;
    margin-bottom: 0 !important;
}
.form-group.popup h3 {
    margin-top: 0;
}
#startupModal p {
    color: #333;
}
.form-group.popup .user-input-wrp {
    margin-top: 25px;
}

.user-input-wrp {
    position: relative;
    margin: 0px 0 20px;
}
.user-input-wrp .inputText {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #bbb;
    box-shadow: none !important;
    height: 40px;
    padding-left: 35px;
    background: transparent;
}
.user-input-wrp .floating-label {
    position: absolute;
    pointer-events: none;
    top: 10px;
    left: 35px;
    transition: 0.2s ease all;
    color: #666;
}
.user-input-wrp .fa {
    position: absolute;
    left: 1px;
    top: 12px;
    width: 25px;
    border-right: 1px solid #999;
    padding-right: 10px;
}
.btn-send {
    display: block;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 10px;
    width: 100%;
    color: #fff;
    background: #409447;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.close-icon img {
    width: 40px;
}
#startupModal p span {
    font-size: 18px;
    font-weight: bold;
}
.containertest {
    width: 85%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
}
.tires-slider {
    margin-top: 60px;
    text-align: center;
    margin-bottom: 30px;
}
.rowtest {
    width: 33%;
    background: white;
    margin: 15px 0px;
}
.rowtest .cardtest {
    padding: 10px;
    float: left;
}
.cardtest p {
    padding: 15px;
    font-size: 15px;
    color: #9c9393;
}
.icontest {
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}
.cardtest img {
    margin: 0px 30px;
    width: 80px;
    box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 23%);
}

.img-circle {
    border-radius: 50%;
}
h1.testti {
    font-size: 4rem;
    font-family: 'Kaushan Script', cursive;
    letter-spacing:3px;
  color:#5892FF;
}
p.testtip{
  margin:0;
  font-size:2em;
  color:#000;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing:1px;
}
.go-home{
  color:#fff;
  background:#5892FF;
  border:none;
  padding:10px 50px;
  margin:30px 0;
  border-radius:30px;
  text-transform:capitalize;
  box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}
.go-home a{
    color:#fff;
}
section#tq {
    margin: 70px 0 60px 0;
}
img.thank-img {
    width: 45%;
    margin: auto;
}
a.footer-text.foot-conn {
  color: white!important;
}
a.footer-text.foot-conn:hover {
  color: green !important;
  font-weight: 800 !important;
}
.styled-icons.icon-bordered a:hover {
  background-color: #777777;
  color: #fff!important;
  font-weight: 800 !important;
}
.layer-overlay.overlay-white-6::before {
  background-color: rgba(255, 255, 255, 0.6);
}
i.fa.fa-wrench {
  color: #52ca6c !important;
  font-size: 25px;
}
.media-body p a {
  color: #808080;
}
.user-input-wrp .inputText:focus {
  border-color: #444;
  border-width: medium medium 2px;
}

.user-input-wrp.active .floating-label,
.user-input-wrp input:focus ~ .floating-label,
.user-input-wrp input:not(:focus):valid ~ .floating-label {
  top: -15px;
  left: 0;
  font-size: 13px;
  color: #333;
  border-radius: 20px;
  opacity: 1;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.p-5 {
  padding: 5px !important;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}



.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:60px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
span.form-control.phone-number-prefix {
  width: 10%;
  float: left;
  font-size: 20px;
}
input.form-control.ph {
  width: 90%;
}



.Slidesbackground {
  margin: 0;
  padding: 0;
  height: 185px;
}
.slideshow-image{
  border-radius:3%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mySlides {
  display: flex;
  justify-content: center;
  align-items: center;
}
p.slideshow-image {
  color: white;
}
.slideshow-container {
  display: flex;
  justify-content: center;
  margin: -190px 0px 0px 275px;
  width: 74%;
  position: relative;
  min-height: 1px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
      opacity: .4
  }
  to {
      opacity: 1
  }
}

.nav1 {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
    align-content: space-between;
    justify-content: space-around;

}

.nav1__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 35%;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 13px;
    color: #444444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

.nav1__link:hover {
    background-color: #eeeeee;
}

.nav1__link--active {
    color: #009578;
}
