@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;
}

/* Reset margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 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;  
}
.contact-btn:hover{
  background-color: var(--btn-hover) !important;
}
.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;
 }
.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;
  }
  .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 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 start */
.about_banner {
  width: 100%;
  height: 60vh !important;
  position: relative;
  overflow: hidden;
}
#about_slideimg {
  height: 40% !important;
  width: 100%;
  background-attachment: fixed !important;
  background-repeat: no-repeat; 
  object-fit: cover;  
  opacity: 0.3;
}
.abouttitle_content h1{
  color: var(--Font-color) !important;
  font-size: 60px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-weight: 400 !important;
  position: absolute;
  top:40%;
  left:40%; 
}
.about-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:60%;
  left:38%;
  font-weight: 700 !important;
  padding: 17px 43px;
  cursor: pointer;
}
.about-btn:hover{
  background-color: var(--btn-hover) !important;
}
/* Banner section end */
/* Mobile view */
/* @media (max-width:450px) { */
@media only screen and ( min-width:360px) and (max-width:480px){
  .about_banner { 
  height: 60vh !important;  
}
#about_slideimg {
  height: 50vh !important;  
}
.abouttitle_content h1{
  font-weight: 450 !important;
  font-size: 40px;  
  position: absolute;
  top:30%;
  left:31%;
  z-index: 1!important;
}
.about-btn
{  
  position: absolute;
  top:41%;
  left:22%;
  font-weight: 600 !important;
  padding: 7px 25px;
  cursor: pointer;
}
.about-btn:hover{
  background-color: var(--btn-hover) !important;
}
}
/* Mobile view end */
/* Tabview */
@media (min-width:768px) and (max-width:992px)
{
.abouttitle_content h1
{   
  font-size: 50px;  
  position: absolute;
  top:30%;
  left:34%;
  z-index: 1!important;
}
.about-btn
{  
  position: absolute;
  top:50%;
  left:30%; 
}
}
/* About us content section starts */
.aboutus-container
{
  background-color: #000;
  padding-bottom: 50px;
}
.aboutus-title
{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  margin-top: 80px;
  margin-left: 50px;
}
.about-text
{
  color: #fff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-top: 40px;
  margin-left: 50px;
}
.about-img
{
  margin-top: 60px;
}
/* Mobile view */
/* @media (max-width:450px)
{ */
@media only screen and ( min-width:360px) and (max-width:480px){
.about-text
{
  margin-top: 30px;
  margin-left: 0px;
}
.aboutus-title
{ 
  margin-top: 10px;
  margin-left: 0px;
}
.about-img
{
  margin-top: 0px;
}
.aboutus-container
{
 
  padding-bottom: 10px;
}
}
/* Tabview */
@media (min-width:768px) and (max-width:992px)
{
.about-img
{
  margin-top: 60px;
}
.about-text
{
font-size: 15px;
}
.aboutus-title
{ 
  margin-top: 10px;
  margin-left: 50px;
}
}
/* Tablet view */
/* About us content section end*/
.financing-container{
position: relative;
}
.overlay
{
  height: 50vh; 
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  position: absolute;
  top:0px;
}
.financing-title 
{
  color: #fff ;
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-weight: 400 !important;
  position: absolute;
  top:80px;
  left:30%;
  /* margin-top: 80px; */
   /* margin-left: 50px; */  
}
.financing-image
{
  height: 50vh !important;
  width: 100%;
}
.financing-btn
{
  background-color: var(--primary-color) !important;
  color:var(--Font-color);
  position: absolute;
  top:50%;
  left:40%;
  font-weight: 700 !important;
  padding: 17px 37px;
  cursor: pointer;
}
.financing-btn:hover{
  background-color: var(--btn-hover) !important;
}
/* Mobile view Starts */
/* @media (max-width:450px)
{ */
@media only screen and ( min-width:360px) and (max-width:480px){
.financing-title 
{  
  font-size: 24px; 
  font-weight: 500 !important;
  position: absolute;
  top:30% !important;
  left:13% !important;  
}
.financing-image
{ 
  width: 100%;
}
.financing-btn
{
  position: absolute;
  top:50% !important;
  left:15% !important;
  font-weight: 600 !important;
  padding: 17px 37px;
  cursor: pointer;
}
}
/* Tablet view */
@media (min-width:768px) and (max-width:992px)
{
.financing-title 
{  
  font-size: 40px; 
  position: absolute;
  font-weight: 400 !important;
  top:30% !important;
  left:18% !important; 
}
.financing-btn
{
  position: absolute;
  top:50%;
  left:30%;
}
}
/* welcome section starts */
.welcome-container
{
  margin-top: 20px;
}
.welcome-subtext
{
 color:var(--Font-color);
 font-size: 17px;
 text-align: center; 
}
/* Flexible section end */
/* Mobile view starts */
@media screen and (min-width:360px) and (max-width:480px) {
.flexible-subtext
{
 text-align: justify; 
}
.welcome-container
{
  margin-top: 0px;
}
.welcome-subtext
{
 text-align: justify; 
}
}
/* Mobile view end */
/* our-journey starts */
.our-journey-bg
{
  background-color: var(--Font-color);
}
.our-journey-container
{
  margin-top: 40px;  
}
.our-journey-title
{
 margin-top: 30px;
 color:var(--primary-color);
 letter-spacing: 2px;
 font-size: 40px;
 font-family: "oswald",sans-serif;
 font-weight: 400;
}
.our-journey-text
{
 margin-top: 20px;
 color:#000;
 font-size: 17px;
 font-family: "Roboto", sans-serif;
 align-items: justify;

}
/* Our-journey 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;
}
/* Mobile view starts */
@media screen and (min-width:360px) and (max-width:480px) {
.why-us-image
{
  margin-bottom: 20px;
}
}
/* Mobile view end */
/* Why choose us end */
/* Our core value section starts */
.our-core-bg
{
  /* background-color: #BFC3BA; */
  background-color: #dad7cd; 
  /* background-image: url(/Images/content-bg.png); */
  background-size: cover;
  /* background-position:left; */
  background-repeat: no-repeat;
}
.Our-core-title
{
 color:var(--primary-color);
 letter-spacing: 2px;
 font-size: 45px;
 font-family: "oswald",sans-serif;
 font-weight: 400;
}
.our-core-text
{
  /* margin-top: 25px; */
 color:#242323; 
 font-size: 20px;
 font-family: "Roboto", sans-serif;
}
/* .nav-link i{
      color: #D81324 !important;
} */
 .nav-link {
    display: block;
    color: #fff;
    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;
}
.our-core .nav .nav-link {
    background:#fff;
    transition: .5s;
}
.our-core .nav .nav-link:hover {
    /* box-shadow: 5px 5px var(--primary-color); */
  box-shadow: 10px 10px  var(--primary-color);
  transition: .5s;  
}
.our-core .nav .nav-link.active h4 {
    color: #0B2154 !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #000 !important;
    background-color: #fff !important;
}
.core_value_image
{
  height: 750px !important;
  width: 550px !important;
  border-radius: 20px;
  border: 5px solid #f2f2f2;
  box-shadow: 5px 5px 5px #c5c2c2;
}
/* Our core value section end */
/* Mobile view starts*/
@media screen and (min-width:360px) and (max-width:992px) {
.core_value_image
{
  height: 450px !important;
  width: 450px !important;
}
}
/* Mobile view end */
/* Serving Yakima starts */
.content_section_2 {
  height: auto;
  width: 100%; 
}
.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; 
}
.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;
  background: linear-gradient(to right,  #FE0944, #FF0000);
  color:white !important; 
  font-size: 20px !important;
  height:50px;
  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;
}
/* Mobile view starts */
@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;
}
}
/* Footer end */
/* 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 */

