@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
:root {
  --primary-color: #ff2a00;
  --Background: #262626;
  --Font-color: #fcfcfc;
  --sub-title: #d7d9e0;
  --bg2: #666;
  --card-bg: #6b757d;
  --bodybg: #262626;
  --btn-hover: #d22300;
  --dark-red: #bf001d;
  --dark-grey: #3f464d;
  --line-height: 1.4em;
  --num-lines: 4;
  --max-height-collapsed: calc(var(--line-height) * var(--num-lines));
  --max-height-expanded: calc(var(--line-height) * 10);
}
/* Reset margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}
/* Reset specific element styles */
html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  background-color: var(--bodybg) !important;
  /* overflow-x: hidden; */
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none !important;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Header section starts */
.header1
{
  background-color: var(--Background) !important;
  height:150px;
  position: relative; 
}
.logo
{
  height:100px;
  width:200px;
  margin-top: 10px;
  margin-left: 80px;
  z-index: 1000 !important;
}
 .contact-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:40px;
  right:10%;
  border-radius: 10px;
  font-weight: 700 !important;
  padding: 10px 35px;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
}
.contact-btn:hover{
  background-color: var(--btn-hover) !important;
  color: #fff;
}
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler-icon:focus
{
  outline:none !important;
  box-shadow: none !important;
  border:none !important;  
}
.navbar { 
  background-color: var(--primary-color);
}
.sticky {
  position: fixed !important;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.navbar-nav {
  margin-left: 100px !important;
}
.nav-item { 
  position: relative;  
}
.nav-item a
{
  text-transform: uppercase;
  cursor: pointer;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 17px;
  margin: 10px 24px;
  position: relative;
  word-spacing: 1px;
}
.nav-item a::after
{
  content: '' ;
  opacity: 0;
  width: 100% !important;
  height:2px;
  background-color: var(--Font-color);
  position:absolute;
  bottom:-2px;
  transform: scaleX(0);
  transform-origin: center;
  left:0px;
  transition:all 0.5s;
}
.nav-link:hover::after {
opacity:1; 
transform: scaleX(1.1);
} 
.nav-item .active{
  color:var(--Font-color);
  border-bottom: 2px solid var(--Font-color);
  /* width: 100% !important;   */
}
/* .dropdown ul li a
{
  padding: 10px !important;
  margin: 0 !important; 
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.dropdown ul li a:hover
{
  transition: all 0.5s ease;
  background-color: var(--bodybg) !important;
  color: var(--primary-color) !important;
} */
 .dropdown {
  position: relative;
  display: inline-block !important;
 }
.dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;  
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 17px;
  margin: 10px 24px; 
  word-spacing: 1px; 
}
.arrow {
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.dropdown-content {
  display: none;
  position: absolute;
  color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: var(--Background) !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content .dropdown-item {
  padding: 10px !important;
  margin: 0 !important;
  background-color: var(--Background) !important;
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 16px !important;
  
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
/* Mobile view starts */
/* @media (max-width: 450px) { */
@media only screen and ( min-width:360px) and (max-width:480px){
  .header1 {
    height: 130px;
    position: relative !important;
  }
.contact-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:-70px !important;
  right:10%;
  border-radius: 10px;
  font-weight: 700 !important;
  padding: 10px 35px;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
}
  .navbar-nav {
    margin-left: 100px !important;
  }
  .nav-item a {
    font-size: 14px !important;
    margin: 0px 10px;
  }
  .nav-item a:hover::after {
    opacity: 0;
  }
  .logo {
    margin-left: 5px !important;
  }
  .nav-link.active {
    color: #262626 !important;
    border-bottom: none;
  }
  /* .dropdown ul li a {
    padding: 2px 10px !important;
    font-size: 13px !important;
    color: var(--Font-color) !important;
  }
  .dropdown ul li a:hover {
    background-color: var(--bodybg) !important;
    color: var(--primary-color) !important;
  } */
.dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 14px;
  margin: 0px 10px; 
  word-spacing: 1px; 
} 
.dropdown-content .dropdown-item {
  padding: 8px 10px !important;
  margin: 0 !important;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-size: 14px !important;
  z-index: 1000 !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
.nav-social-links {
  margin-top: 30px;
  margin-left: 50px;
  padding-bottom: 5px;
}
.nav-social-links a {
  background-color: #ffff !important;
  border-radius: 50% !important;
  margin: 0px 3px;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 30px;
  display: inline-block;
  position: relative;
  z-index: 100;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.nav-social-links i {
  color: #262626 !important;
  font-size: 25px;
  margin-top: 12px;
}
.contact-btn {
  background-color: var(--primary-color) !important;
  color: var(--Font-color);
  position: absolute;
  top: 40px;
  right: 5%;
  border-radius: 10px;
  font-weight: 600 !important;
  padding: 8px 17px;
  cursor: pointer;
  font-size: 20px;
}
}
/* Mobile view End */
/* Tablet view start */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .navbar-nav {
    margin-left: 250px !important;
  }
  .nav-item a {
    font-size: 14px !important;
    margin: 5px 10px;
  }
  .nav-item a:hover::after {
    opacity: 0;
  }
  .contact-btn {
    background-color: var(--primary-color) !important;
    color: var(--Font-color);
    position: absolute;
    top: 40px;
    right: 10%;
    font-weight: 600 !important;
    padding: 10px 37px;
    cursor: pointer;
  }
  .contact-btn:hover {
    background-color: var(--btn-hover) !important;
  }
  .nav-link.active {
    color: #262626 !important;
    border-bottom: none;
  }
  .nav-social-links {
    margin-left: 200px;
    margin-top: 20px;
    padding-bottom: 5px;
  }
  .nav-social-links a {
    background-color: #ffff !important;
    border-radius: 50% !important;
    margin: 0px 3px;
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 30px;
    display: inline-block;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
  }
  .nav-social-links i {
    color: #262626 !important;
    font-size: 25px;
    margin-top: 10px;
  }
  .dropbtn {
  background-color: var(--primary-color);  
  border: none;
  cursor: pointer; 
  position: relative;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700 !important;
  padding: 15px 3px 5px 3px !important;
  font-size: 14px;
  margin: 0px 10px; 
  word-spacing: 1px; 
} 
.dropdown-content .dropdown-item {
  padding: 2px 10px !important;
  margin: 0 !important;
  padding: 0;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  /* font-weight: 400 !important; */
  font-size: 13px !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.dropdown-content a:hover {
  color: var(--primary-color) !important;
  background-color: #262626;
}
}
/* Tablet view end */
/* Header section end*/
/*For easy pay finance on the right side of the page*/
.easypay-finance {
  position: fixed;
  top: 50%;
  right: 0.5%;
  z-index: 1000; /* Ensure the button is above other elements */ 
  border-radius: 25px !important; 
}
/* Banner section starts */
.wheels_banner {
  width: 100%;
  height: 60vh !important;
  position: relative;
  overflow: hidden;
}
.wheels_slideimg {
  height: 100vh !important;
  width: 100%;
  background-attachment: fixed !important;
  background-repeat: no-repeat;
  object-fit: cover;
  /* opacity: 0.3; */
  background-position: center;
  position: absolute;
  top: -140px;
}
.wheels_overlay {
  height: 80vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0px;
}
.wheels_content h1 {
  color: var(--Font-color) !important;
  font-size: 55px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-weight: 400 !important;
  position: absolute;
  top: 26%;
  left: 34%;
  z-index: 1 !important;
}
.wheels_content span {
  color: var(--Font-color) !important;
  font-size: 25px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-weight: 500 !important;
  position: absolute;
  top: 39%;
  left: 37%;
  z-index: 1 !important;
}
.wheels-btn {
  background-color: var(--primary-color) !important;
  color: var(--Font-color);
  position: absolute;
  top: 47%;
  left: 36%;
  font-weight: 700 !important;
  padding: 17px 37px;
  cursor: pointer;
}
.wheels-btn:hover {
  background-color: var(--btn-hover) !important;
  color: var(--Font-color);
}
/* Mobile view */
/* @media (max-width:450px)
{ */
@media only screen and (min-width: 360px) and (max-width: 480px) {
  .wheels_banner {
    width: 100%;
    height: 40vh !important;
  }
  .wheels_slideimg {
    height: 70vh !important;
  }
  .wheels_content h1 {
    font-weight: 450 !important;
    font-size: 30px;
    position: absolute;
    top: 15%;
    left: 23%;
  }
  .wheels_content span {
    font-size: 16px;
    top: 24%;
    left: 26%;
    z-index: 1 !important;
  }
  .wheels-btn {
    position: absolute;
    top: 30%;
    left: 18%;
    padding: 10px 25px;
  }
}
/* Mobile view end */
/* Tablet view start */
@media (min-width: 768px) and (max-width: 992px) {
  .wheels_banner {
    width: 100%;
    height: 60vh !important;
  }
  .wheels_slideimg {
    height: 100vh !important;
  }
  .wheels_content h1 {
    font-size: 40px;
    position: absolute;
    top: 22%;
    left: 28%;
  }
  .wheels_content span {
    font-size: 25px;
    top: 32%;
    left: 29%;
    z-index: 1 !important;
  }
  .wheels-btn {
    position: absolute;
    top: 41%;
    left: 27%;
    padding: 10px 37px;
  }
}
/* Tablet view end */
/* Banner section end */
/* Welcome content starts*/
.trusted-container {
  margin-top: 40px;
}
.trusted-title {
  color: var(--Font-color);
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.trusted-text1 {
  color: var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 300;
}

/* Mobile view */
@media only screen and (min-width: 360px) and (max-width: 480px) {
  .trusted-container {
    margin-top: 50px !important;
  }
  .trusted-title {
    font-size: 25px;
    /* margin-top: 20px !important; */
    text-align: center;
  }
  .trusted-text1 {
    color: var(--Font-color);
    font-size: 15px;
    align-items: center;
    text-align: justify;
    font-weight: 300;
  }
}
/* Tablet view */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .trusted-container {
    margin-top: 60px !important;
  }
  .trusted-title {
    font-size: 25px;
    text-align: center;
  }
  .trusted-text1 {
    font-size: 16px;
  }
}
/* welcome content end */
/* Why choose us starts */
.why-us-container {
  margin-top: 40px;
}
.why-us-title {
  color: var(--Font-color);
  letter-spacing: 2px;
  font-size: 40px;
  font-family: "oswald", sans-serif;
  font-weight: 400;
}
.why-us-subtitle {
  margin-top: 25px;
  /* color:#d0f4f0; */
  color: var(--sub-title);
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
.why-us-text {
  color: var(--Font-color);
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  align-items: justify;
  margin-left: 25px;
}
.why-us-img
{
  border-radius: 10px;
} 
/* Why choose us end */
/* Tablet view  starts */
@media screen and (min-width:768px) and (max-width:992px)
{
  .why-us-img
{
  display: block;
  margin: 0 auto;
} 
}
/* Tablet view  end */
/* Top brands slideshow */
.topbrand-bg {
  margin-top: 40px;
  background-color: var(--Font-color);
  background-size: cover;
  background-position: center;
  background-image: url(/Images/content-bg.png);
}
.top-brand-container {
  display: grid;
  place-items: center;
  /* background-color: var(--bg2); */
}
.slider-title {
  font-size: 3rem;
  padding-top: 20px;
  margin-top: 20px;
  color: var(--primary-color);
  /* font-size: 40px; */
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.topbrand-text {
  color: #000;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 300;
}
.slider {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* background: rgb(255, 255, 255); */
  background-color: #e0dcdc;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}
.slider-items img {
  width: 12%;
  margin: 20px;
}
/* Top brand slideshow  end*/
/* Mobile view starts*/
@media screen and (min-width:360px) and (max-width:480px) {
.topbrand-bg
{  
  background-color: #dad7cd; 
  background-image: none;
}
.slider-title {
  font-size: 1.3rem; 
}
.topbrand-text {
  font-size: 15px;
  text-align: justify;
 }
}
/* Mobile view end */
/* High-quality-services section starts */
.high-quality-container {
  margin-top: 40px;
  margin-bottom: 20px;
}
.high-quality-title {
  color: var(--Font-color);
  font-family: "oswald", sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}
.high-quality-subtext {
  color: var(--Font-color);
  font-size: 18px;
  align-items: center;
  text-align: justify;
  font-weight: 300;
}
.high-quality-subtitle {
  margin-top: 25px;
  /* color:#d0f4f0; */
  color: var(--sub-title);
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
.high-quality-text {
  color: var(--Font-color);
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  align-items: justify;
}
.high-quality-img {
  margin-top: 100px !important;
}
/* High-quality-services section end */
/* Mobile view starts */
@media screen and (min-width:360px) and (max-width:480px){

.high-quality-img {
  margin-top: 40px !important;
}
}
/* Mobile view end */
/* Services section starts */
.services-bg
{
  /* background-color: #BFC3BA; */
  background-color: #dad7cd; 
  background-image: url(/Images/content-bg.png);
  background-size: cover;
  background-position:left;
  background-repeat: no-repeat;
}
/* .nav-link i{
      color: #D81324 !important;
} */
 .nav-link {
    display: block;
    color: #D81324;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.service .nav .nav-link {
    background:#f2f2f2;
    transition: .5s;
}
.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--dark-red) !important;
}
/* Services section end */
/* Mobile view starts*/
@media screen and (min-width:360px) and (max-width:992px) {
.services-bg
{  
  background-color: #dad7cd; 
  background-image: none;
}
}
/* Mobile view end */
/* Serving Yakima starts */
.content_section_2 {
  height: auto;
  width: 100%;
  margin-top: 60px;
}
.quote {
  color: #000;
  background-color: var(--sub-title);
  font-family: "Roboto", sans-serif;
  text-align: center;
  width: 80%;
  height: auto;
  font-size: 17px;
  padding: 50px 20px;
  margin: 0 auto;
  border: 3px solid var(--btn-hover);
  border-radius: 25px;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
  /* cursor: pointer; */
}
.quote:before,
.quote:after {
  content: "";
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 15px;
  top: 15px;
  bottom: 15px;
  right: 15px;
}
.contactbtn {
  background: linear-gradient(to right, #fe0944, #ff0000);
  color: white !important;
  font-size: 20px !important;
  height: 50px;
  position: relative;
  z-index: 1;
  padding: 20px 20px 20px 20px !important;
  border-radius: 10px;
  font-weight: 600 !important;
}
.contactbtn1 {
  margin-left: 20px;
  transform: translate(50%, -50%) rotate(270deg) !important;
  z-index: 2000; /* Ensure the button is above other elements */
  animation: gradient 4s infinite 0.8s cubic-bezier(0.2, 0.8, 0.2, 1.2) forwards;
  font-family: "poppins", sans-serif; 
  color:white !important; 
  font-size: 20px !important;
  height:50px;
  background: linear-gradient(to right,  #FE0944, #FF0000);
  position: relative;
  padding: 20px 20px 20px 20px!important;
  border-radius: 10px;
  font-weight: 600 !important;   
}
@keyframes gradient {
0% { background: linear-gradient(90deg, #f03c06 0%, #d2d53a 100%) }
10% { background: linear-gradient(90deg, #b38c22 0%, #e6380c 100%) }
40% { background: linear-gradient(90deg, #0C359E 0%, #EE99C2 100%) }
/* 30% { background: linear-gradient(90deg, #496989 0%, #58A399 100%) } */
/* 40% { background: linear-gradient(90deg, #596266 0%, #9BB0C1 100%) } */
50% { background: linear-gradient(90deg, #008DDA 0%, #d46220 100%) }
60% { background: linear-gradient(90deg, #0700b8 0%, #00ff88 100%) }
/* 70% { background: linear-gradient(90deg, #3F2B96 0%, #A8C0FF 100%) } */
/* 80% { background: linear-gradient(90deg, #99BC85 0%, #365486 100%) } */
90% { background: linear-gradient(90deg, #f02106 0%, #2a7f99 100%) }
100% { background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%) }
}
.quote:after {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  top: -5px;
  bottom: -5px;
  left: 15px;
  right: 15px;
}
@media screen and (min-width:360px) and (max-width:480px)
{
  .quote {
    width: 90%;
    padding: 30px 15px;
    font-size: 15px;
    margin-bottom: 50px;
  }
  .contactbtn {
    width: 40%;
    font-size: 18px !important;
    height: 45px;
    margin: 0 auto;
    padding: 15px !important;
    border-radius: 8px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
  }  
  .contactbtn1 {
    width: 40%;
    font-size: 18px !important;
    height: 45px;
    margin: 0 auto;
    padding: 15px !important;
    border-radius: 8px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
  }
  .contactbtn1 {
    margin: 15px auto;
    transform: none !important; /* Reset the rotation for mobile view */
  }
}
/* Mobile view end */
/* Serving yakima end */
/* Footer starts */
.quick-links {
  margin-top: 60px;
}
.quick-links ul li a {
  color: var(--Font-color) !important;
  font-size: 16px !important;
}

.quick-links ul li {
  padding: 8px 0px !important;
}
/* Logo and address */
.footer-logo {
  margin-top: 40px;
  margin-left: 10px;
}
.title {
  margin-top: 30px;
  color: var(--Font-color);
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-left: 60px;
}
.address1 {
  color: var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-top: 60px !important;
  margin-left: 60px;
  font-weight: 300 !important;
}
.email {
  color: var(--Font-color);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-decoration: underline;
  margin-left: 40px;
  font-weight: 300 !important;
}
.business-hours {
  margin-top: 60px;
}
.hour-title {
  margin-top: 30px;
  color: var(--Font-color);
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  /* margin-left: 100px; */
  text-align: center;
}
.hour-text {
  margin-top: 30px;
  margin-bottom: 0px !important;
  color: var(--Font-color);
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin-left: 60px;
}
.hour-text p{
 margin-top: 5px !important;
}
.footer-dropdown ul li a {
  /* padding: 5px; */
  padding: 0 10px !important;
  background-color: var(--Background);
  color: var(--Font-color) !important;
  text-transform: uppercase;
  font-size: 13px !important;
}
.footer-dropdown ul li a:hover {
  transition: all 0.5s ease;
  background-color: var(--bodybg) !important;
  color: var(--primary-color) !important;
}
.social-links-title {
  margin-top: 30px;
  color: var(--Font-color);
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  /* margin-left: 100px; */
  text-align: center;
}
.social-links ul {
  margin-top: 15px;
  margin-left: 40px;
  display: flex;
}
.social-links ul li {
  margin: 0 5px;
  cursor: pointer;
}
.social-links ul li a {
  background-color: var(--primary-color);
  border-radius: 50% !important;
  /* margin: 3px 10px; */
  height: 60px;
  width: 60px;
  text-align: center;
  /* padding:10px; */
  font-size: 30px;
  transition: 0.6s;
  cursor: pointer;
  display: block;
  position: relative;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.social-links i {
  color: #fff;
  font-size: 35px;
  margin-top: 12px;
}
.social-links ul li a:hover {
  transform: translate(0, -10px);
}
.copyright {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  height: 70px;
  width: 100%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright1 {
  color: #ffffff;
  font-size: 20px;
  text-decoration: underline !important;
  cursor: pointer;
}
/* Mobile view */
/* @media screen and (max-width:450px) { */
@media only screen and (min-width: 360px) and (max-width: 480px) {
  .quick-links {
    display: none;
  }
  .social-links ul {
    margin-top: 30px;
  }
  .footer-logo {
    margin-top: 20px !important;
    margin-left: 50px;
  }
  .title {
    display: none;
  }
  .address1 {
    display: none;
    margin: 0;
  }
  .email {
    display: none;
  }
  .business-hours {
    margin-top: 0px !important;
  }
  .hour-text {
    margin-top: 20px;
    font-size: 18px;
    margin-left: 40px;
  }
  .social-links ul {
    margin-top: 15px;
  }
}
/* Tablet view */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .quick-links {
    margin-top: 30px;
  }
  .quick-links ul li a {
    color: var(--Font-color) !important;
    font-size: 13px !important;
  }
  .quick-links ul li {
    padding: 4px !important;
  }
  .footer-dropdown ul li a {
    padding: 0 5px !important;
    font-size: 13px !important;
  }
  .footer-logo {
    margin-top: 40px;
    margin-left: 0px !important;
  }
  .title {
    display: none;
  }
  .address1 {
    display: none;
  }
  .email {
    display: none;
  }
  .business-hours {
    margin-top: 20px;
  }
  .hour-text {
    font-size: 14px;
    margin-left: 5px;
  }
  .social-links-title {
    margin-top: 30px;
  }
  .social-links ul {
    margin-top: 10px;
    margin-left: 0px !important;
    padding: 0px;
    display: flex;
  }
}
/* Scroll top button */
#myBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 100;
  font-size: 25px;
  border: none;
  outline: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px;
  background-color: var(--Font-color);
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
/* Whatsapp button */
/* .whatsapp-float {
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 20px;
  left: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50% !important;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2000;
}

.whatsapp-float i {
  margin-top: 8px;
} */

.whatsapp-float1 .google-voice{
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius:50% !important;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2000;
}
@media only screen and (min-width: 768px) {
  /* .whatsapp-float {
    right: 20px;
    left: auto;
    bottom: 80px;
  } */
  #myBtn {
    right: 20px;
  }
}
@media only screen and (min-width:350px)and (max-width: 450px) {
  /* .whatsapp-float {
    position: fixed !important;
    right: 20px !important;
  } */
  #myBtn {
    position: fixed !important;
    right: 20px !important;
  }
   .whatsapp-float1 img {
    position: fixed !important;
    left: 20px !important;
    bottom:20px !important;
  }
}
/* footer end */

